summaryrefslogtreecommitdiffstats
path: root/include/Makefile
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1996-08-30 19:37:14 +0000
committerpeter <peter@FreeBSD.org>1996-08-30 19:37:14 +0000
commit54b29fe2cd76130677ad46471e6e642b9da747b6 (patch)
tree2f9d762298943972097aaed0dcc2c4defc6bee20 /include/Makefile
parent4e5231d04b9721ef4f13ff57cdc9da4aeb57a5e2 (diff)
downloadFreeBSD-src-54b29fe2cd76130677ad46471e6e642b9da747b6.zip
FreeBSD-src-54b29fe2cd76130677ad46471e6e642b9da747b6.tar.gz
echo -> ${ECHO}
do the rm -rf and ln -s in two seperate commands to allow a fork/exec without a "sh -c" in the middle. Submitted by: bde
Diffstat (limited to 'include/Makefile')
-rw-r--r--include/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/Makefile b/include/Makefile
index 956e0e2..1f93a89 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -1,5 +1,5 @@
# From: @(#)Makefile 8.2 (Berkeley) 1/4/94
-# $Id: Makefile,v 1.40 1996/08/20 08:19:33 julian Exp $
+# $Id: Makefile,v 1.41 1996/08/29 19:57:48 peter Exp $
#
# Doing a make install builds /usr/include
#
@@ -100,12 +100,12 @@ copies:
.endif
symlinks:
- @echo "Setting up symlinks to kernel source tree..."
+ @${ECHO} "Setting up symlinks to kernel source tree..."
.for i in ${LDIRS} ${LUDIR}
- rm -rf ${DESTDIR}/usr/include/$i && \
- ln -s /sys/$i ${DESTDIR}/usr/include/$i
+ rm -rf ${DESTDIR}/usr/include/$i
+ ln -s /sys/$i ${DESTDIR}/usr/include/$i
.endfor
- rm -rf ${DESTDIR}/usr/include/machine && \
- ln -s /sys/${MACHINE}/include ${DESTDIR}/usr/include/machine
+ rm -rf ${DESTDIR}/usr/include/machine
+ ln -s /sys/${MACHINE}/include ${DESTDIR}/usr/include/machine
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud