Overview
Comment: | Remove an unnecessary fork of a new sh. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
21081083117c9d6388dd504be95ea1b6 |
User & Date: | js on 2010-09-26 11:36:18 |
Other Links: | manifest | tags |
Context
2010-12-26
| ||
23:52 | Get rid of tput warnings if capability is unavailable. check-in: 6f290a37ef user: js tags: trunk | |
2010-09-26
| ||
11:36 | Remove an unnecessary fork of a new sh. check-in: 2108108311 user: js tags: trunk | |
2010-09-19
| ||
02:05 | Fix generating dependencies for .lib.o and .plugin.o. check-in: 066136bfc9 user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [291249d72c] to [8f38161686].
︙ | ︙ | |||
133 134 135 136 137 138 139 | ${DEPEND_FAILED}; \ fi; \ fi .c.c.dep .cc.cc.dep .cxx.cxx.dep .m.m.dep .mm.mm.dep .S.S.dep: ${CPP} ${CPPFLAGS} -M $< | \ sed 's/^\([^\.]*\)\.o:/\1.o \1.lib.o \1.plugin.o:/' >$@ || \ | | | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | ${DEPEND_FAILED}; \ fi; \ fi .c.c.dep .cc.cc.dep .cxx.cxx.dep .m.m.dep .mm.mm.dep .S.S.dep: ${CPP} ${CPPFLAGS} -M $< | \ sed 's/^\([^\.]*\)\.o:/\1.o \1.lib.o \1.plugin.o:/' >$@ || \ { rm -f $@; false; } pre-depend: ${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS} ${LINK_STATUS} if ${LD} -o $@ ${OBJS} ${LDFLAGS} ${LIBS}; then \ ${LINK_OK}; \ |
︙ | ︙ |