diff options
author | bde <bde@FreeBSD.org> | 1996-12-31 02:38:28 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-12-31 02:38:28 +0000 |
commit | 66775f8a04d4103f8f30c116202b455d380cc827 (patch) | |
tree | fb1042a682546c32beffed7e8122fa7caa07e2b8 /lib/compat | |
parent | 0368cd4304524bd043bd10360cd198e69a0c897f (diff) | |
download | FreeBSD-src-66775f8a04d4103f8f30c116202b455d380cc827.zip FreeBSD-src-66775f8a04d4103f8f30c116202b455d380cc827.tar.gz |
Use `beforeinstall' target instead of `install' target so that the links
get installed.
The `install' target should only be overridden when the default one would
do something wrong and you're too lazy to fix the default one.
Diffstat (limited to 'lib/compat')
-rw-r--r-- | lib/compat/compat1x/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/compat/compat1x/Makefile b/lib/compat/compat1x/Makefile index f2ca6ae..800d1ba 100644 --- a/lib/compat/compat1x/Makefile +++ b/lib/compat/compat1x/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/12/28 17:42:46 peter Exp $ +# $Id: Makefile,v 1.4 1996/12/30 07:31:43 jkh Exp $ DISTRIBUTION= compat1x @@ -9,8 +9,7 @@ LIBS= libc.so.1.1 libcurses.so.1.1 libf2c.so.1.1 libg++.so.1.1 \ libutil.so.1.1 liby.so.1.1 CLEANFILES+= ${LIBS} -LINKS= ${LIBCOMPATDIR}/libtermcap.so.1.1 \ - ${LIBCOMPATDIR}/libtermlib.so.1.1 +LINKS= ${LIBCOMPATDIR}/libtermcap.so.1.1 ${LIBCOMPATDIR}/libtermlib.so.1.1 all: ${LIBS} @@ -19,7 +18,7 @@ ${lib}: ${lib}.gz.uu uudecode -p ${.CURDIR}/${lib}.gz.uu | gunzip > ${lib} .endfor -install: +beforeinstall: ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} ${LIBS} \ ${DESTDIR}${LIBCOMPATDIR} |