Overview
Comment: | That rm -f is unnecessary. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
90f748637b256727baaa74127dd37daf |
User & Date: | js on 2007-09-26 04:41:43 |
Other Links: | manifest | tags |
Context
2007-09-26
| ||
14:20 | Only generate .deps file if there are files for it. check-in: 16cf0533ac user: js tags: trunk | |
04:41 | That rm -f is unnecessary. check-in: 90f748637b user: js tags: trunk | |
04:38 | Optimize dependency generation. check-in: 3008f6d7d1 user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [1665f2017f] to [dc3e64c761].
︙ | |||
89 90 91 92 93 94 95 | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | - | depend: pre-depend ${SRCS} regen=0; \ for i in ${SRCS}; do test $$i -nt .deps && regen=1; done; \ if test x"$$regen" = x"1"; then \ list=""; \ ${DEPEND_STATUS}; \ |
︙ |