diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 20:24:37 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 20:24:37 +0000 |
commit | f8beadbe4e325f8178acbe9b2240bb6113f7ce0f (patch) | |
tree | 71bc07613d3552d1f7f19fcf0a8eb89226d6092c /gnu | |
parent | 9cc74cdcd0ca0115d241369d7342c7151ea5ef01 (diff) |
don't hardcode `install'
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/gcc/Makefile.bsd-wrapper | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gnu/usr.bin/gcc/Makefile.bsd-wrapper b/gnu/usr.bin/gcc/Makefile.bsd-wrapper index 84ebd8af7b0..575025e9704 100644 --- a/gnu/usr.bin/gcc/Makefile.bsd-wrapper +++ b/gnu/usr.bin/gcc/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.26 1997/07/24 19:27:50 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.27 1997/07/24 20:24:36 kstailey Exp $ MAN= cccp.1 gcc.1 cp/g++.1 f/g77.1 MLINKS+= gcc.1 cc.1 @@ -44,15 +44,9 @@ maninstall: @echo NOMAN is set .endif -.if defined (INSTALL_STRIP) && ${INSTALL_STRIP} == "-s" -INST_PROG='/usr/bin/install -cs' -.else -INST_PROG='/usr/bin/install -c' -.endif - install: maninstall ${MAKE} ${GNUCFLAGS} prefix=${DESTDIR}/usr \ - INSTALL_PROGRAM=$(INST_PROG) \ + INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ infodir=${DESTDIR}/usr/share/info \ build_infodir=. \ tooldir=/tmp assertdir=/tmp INSTALL_MAN= NO_TARGET_GCC=true \ |