diff options
author | peter <peter@FreeBSD.org> | 1995-12-11 01:58:53 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-12-11 01:58:53 +0000 |
commit | ae2ac85cb2b7a799f5ab94e3c9a74963e6cc3005 (patch) | |
tree | 9b353f22af06129d55622829072ec4c3d1cc6b20 | |
parent | daf5d50e73373cdd2aebd3f112b8d438702ed6cb (diff) | |
download | FreeBSD-src-ae2ac85cb2b7a799f5ab94e3c9a74963e6cc3005.zip FreeBSD-src-ae2ac85cb2b7a799f5ab94e3c9a74963e6cc3005.tar.gz |
Tweak the install targets so that the installs are done in the right place
relative to the SUBDIR recursion.. Otherwise, the results look really odd.
(basically changed a couple of afterinstall's to beforeinstall's)
-rw-r--r-- | gnu/usr.bin/cvs/contrib/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/contrib/pcl-cvs/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/cvsbug/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/cvsinit/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/gnu/usr.bin/cvs/contrib/Makefile b/gnu/usr.bin/cvs/contrib/Makefile index 1447a61..3e21c04 100644 --- a/gnu/usr.bin/cvs/contrib/Makefile +++ b/gnu/usr.bin/cvs/contrib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1995/12/11 00:45:41 peter Exp $ +# $Id: Makefile,v 1.3 1995/12/11 01:23:42 peter Exp $ SUBDIR= pcl-cvs @@ -26,7 +26,7 @@ all: ${SCRIPTS} sed -e 's,xPERL_PATHx,$(PERLPATH),' $< > $@ -afterinstall: +beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${SCRIPTS} ${DESTDIR}${EXAMPDIR}/contrib cd ${.CURDIR} ; \ diff --git a/gnu/usr.bin/cvs/contrib/pcl-cvs/Makefile b/gnu/usr.bin/cvs/contrib/pcl-cvs/Makefile index 54e71ff..7186a6b 100644 --- a/gnu/usr.bin/cvs/contrib/pcl-cvs/Makefile +++ b/gnu/usr.bin/cvs/contrib/pcl-cvs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1995/12/11 01:23:44 peter Exp $ +# $Id: Makefile,v 1.6 1995/12/11 01:27:18 peter Exp $ FILES= ChangeLog INSTALL NEWS README \ compile-all.el pcl-cvs-lucid.el pcl-cvs-startup.el \ @@ -8,7 +8,7 @@ NOOBJ= noobj EXAMPDIR= /usr/share/examples/cvs -afterinstall: +beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ ${FILES} ${DESTDIR}${EXAMPDIR}/pcl-cvs diff --git a/gnu/usr.bin/cvs/cvsbug/Makefile b/gnu/usr.bin/cvs/cvsbug/Makefile index 2117dda..b2644bf 100644 --- a/gnu/usr.bin/cvs/cvsbug/Makefile +++ b/gnu/usr.bin/cvs/cvsbug/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1995/07/25 00:31:51 bde Exp $ +# $Id: Makefile,v 1.1 1995/12/10 23:05:53 peter Exp $ MAN8= cvsbug.8 @@ -16,7 +16,7 @@ all: cvsbug sed -e "s,xVERSIONx,`cat ver`,g" ${.CURDIR}/$@.sh > $@ -afterinstall: +beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ cvsbug ${DESTDIR}${BINDIR}/cvsbug diff --git a/gnu/usr.bin/cvs/cvsinit/Makefile b/gnu/usr.bin/cvs/cvsinit/Makefile index 8cc2d0a..1af01d3 100644 --- a/gnu/usr.bin/cvs/cvsinit/Makefile +++ b/gnu/usr.bin/cvs/cvsinit/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1995/07/25 00:31:51 bde Exp $ +# $Id: Makefile,v 1.3 1995/12/10 23:06:37 peter Exp $ MAN8= cvsinit.8 @@ -18,7 +18,7 @@ all: cvsinit sed -e 's,xLIBDIRx,$(EXAMPDIR),g' \ -e "s,xVERSIONx,`cat ver`,g" ${.CURDIR}/$@.sh > $@ -afterinstall: +beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ cvsinit ${DESTDIR}${BINDIR}/cvsinit |