aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1994-08-21 10:44:51 +0000
committerBruce Evans <bde@FreeBSD.org>1994-08-21 10:44:51 +0000
commit104915fbb9e39416712dd23889f41913eee9033a (patch)
tree265f66b6577039fa66b6a86f94b2b2bc2da4e9d2
parent802cd8e6f011145297f9e544b4bd65e5a66f654b (diff)
downloadsrc-104915fbb9e39416712dd23889f41913eee9033a.tar.gz
src-104915fbb9e39416712dd23889f41913eee9033a.zip
Touch init.c after making it in case mkinit refused to touch it after not
changing it. mkinit's attempted smartness about timestamps is mismatched with the makefile. init.o is compiled _twice_ the first time it is made...
Notes
Notes: svn path=/head/; revision=2180
-rw-r--r--bin/sh/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile
index 66810a7a8c84..0c57c946a4f9 100644
--- a/bin/sh/Makefile
+++ b/bin/sh/Makefile
@@ -24,6 +24,7 @@ builtins.h builtins.c: ${.CURDIR}/mkbuiltins ${.CURDIR}/builtins
init.c: mkinit ${SRCS}
./mkinit '${CC} -c ${CFLAGS} ${LDFLAGS} init.c' ${.ALLSRC}
+ touch ${.TARGET}
mkinit: ${.CURDIR}/mkinit.c
${CC} ${CFLAGS} ${LDFLAGS} ${.CURDIR}/mkinit.c -o $@