diff options
author | ache <ache@FreeBSD.org> | 1995-01-12 10:29:42 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-01-12 10:29:42 +0800 |
commit | 1abdd645ea800310ef00618151639ec459bb2841 (patch) | |
tree | 6a3c5751b22cd9f7fc1a8dd808daa6acc42afff5 | |
parent | f753c5c2dd6cc0788da1d25ded235601601031cc (diff) | |
download | freebsd-ports-gnome-1abdd645ea800310ef00618151639ec459bb2841.tar.gz freebsd-ports-gnome-1abdd645ea800310ef00618151639ec459bb2841.tar.zst freebsd-ports-gnome-1abdd645ea800310ef00618151639ec459bb2841.zip |
Use absolute path for install passed to configure
to disallow prepending ../ in second level Makefiles
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index b4cd1dcdaa29..1a000ce78c47 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.100 1995/01/11 08:50:48 asami Exp $ +# $Id: bsd.port.mk,v 1.101 1995/01/11 08:53:28 asami Exp $ # # Please view me with 4 column tabs! @@ -453,8 +453,8 @@ ${CONFIGURE_COOKIE}: fi .if defined(HAS_CONFIGURE) @(cd ${WRKSRC}; CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \ - INSTALL="${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP}" \ - INSTALL_PROGRAM="${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}" \ + INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \ + INSTALL_PROGRAM="/usr/bin/install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}" \ ./configure ${CONFIGURE_ARGS}) .endif .if defined(USE_IMAKE) |