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: |
1816a2e4651c401948af9d75a133291b |
User & Date: | js on 2008-11-01 19:19:49 |
Other Links: | manifest | tags |
Context
2008-11-01
| ||
19:27 | It seems that $as_echo is undefined on some systems. Fixed. check-in: b58417c7f6 user: js tags: trunk | |
19:19 | Touch .deps files in the past so they are always recreated. check-in: 1816a2e465 user: js tags: trunk | |
19:10 | Move one line to fix dependency generation. check-in: bbdcfbfc8d 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 ]) |