Overview
Comment: | Touch .deps files in the past so they are always recreated. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8822a3853f706a902f4463f4d27753a2 |
User & Date: | js on 2008-11-01 19:19:00 |
Other Links: | manifest | tags |
Context
2008-11-01
| ||
19:27 | It seems that $as_echo is undefined on some systems. Fixed. check-in: 1b298e5879 user: js tags: trunk | |
19:19 | Touch .deps files in the past so they are always recreated. check-in: 8822a3853f user: js tags: trunk | |
19:09 | Move one line to fix dependency generation. check-in: baeb4314f3 user: js tags: trunk | |
Changes
Modified m4/buildsys.m4 from [dc9da6398d] to [2638d95fc7].
︙ | ︙ | |||
132 133 134 135 136 137 138 | AC_SUBST(UNINSTALL_LIB) AC_SUBST(CLEAN_LIB) ]) AC_DEFUN([BUILDSYS_TOUCH_DEPS], [ $as_echo "$as_me: Touching .deps files" for i in $(find . -name Makefile); do | | | 132 133 134 135 136 137 138 139 140 141 | AC_SUBST(UNINSTALL_LIB) AC_SUBST(CLEAN_LIB) ]) AC_DEFUN([BUILDSYS_TOUCH_DEPS], [ $as_echo "$as_me: Touching .deps files" for i in $(find . -name Makefile); do touch -t 0001010000 $(dirname $i)/.deps done ]) |