diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1995-01-12 02:29:42 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1995-01-12 02:29:42 +0000 |
commit | 2bfaafe2fb81c42662d3171da1e0001662804c22 (patch) | |
tree | 8a361f6403bbcc26313dc9eb539f68b35a3c538c /Mk | |
parent | Fixed a sizeof(off_t) != sizeof(int) problem. (diff) |
Use absolute path for install passed to configure
to disallow prepending ../ in second level Makefiles
Notes
Notes:
svn path=/head/; revision=750
Diffstat (limited to 'Mk')
-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) |