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 /gnu/usr.bin/cvs/contrib | |
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)
Diffstat (limited to 'gnu/usr.bin/cvs/contrib')
-rw-r--r-- | gnu/usr.bin/cvs/contrib/Makefile | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/contrib/pcl-cvs/Makefile | 4 |
2 files changed, 4 insertions, 4 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 |