summaryrefslogtreecommitdiff
path: root/bootstrap/files
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2004-04-23 02:03:18 +0000
committertv <tv@pkgsrc.org>2004-04-23 02:03:18 +0000
commit16fb5e30af1229bf11a01f2b33c7659598de8500 (patch)
tree6f127847ae92fe7bad022359fa158e280b6e27f0 /bootstrap/files
parentabae35bcf4474229c6c8338bab5f2e55f785fd19 (diff)
downloadpkgsrc-16fb5e30af1229bf11a01f2b33c7659598de8500.tar.gz
Rather than work around an automake braindeadness, parameterize install-sh
so that Interix can set the default mode to 0775. Then add "install_sh" to CONFIGURE_ENV so it uses ${INSTALL}, not the package-supplied install script (as is done for autoconf $INSTALL).
Diffstat (limited to 'bootstrap/files')
-rwxr-xr-xbootstrap/files/install-sh.in (renamed from bootstrap/files/install-sh)4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/files/install-sh b/bootstrap/files/install-sh.in
index 971488f4609..7976e801d30 100755
--- a/bootstrap/files/install-sh
+++ b/bootstrap/files/install-sh.in
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: install-sh,v 1.1.1.1 2004/03/11 13:03:59 grant Exp $
+# $NetBSD: install-sh.in,v 1.1 2004/04/23 02:03:18 tv Exp $
# This script now also installs multiple files, but might choke on installing
# multiple files with spaces in the file names.
#
@@ -46,7 +46,7 @@ mkdirprog="${MKDIRPROG-mkdir}"
transformbasename=""
transform_arg=""
instcmd="$mvprog"
-chmodcmd="$chmodprog 0755"
+chmodcmd="$chmodprog @DEFAULT_INSTALL_MODE@"
chowncmd=""
chgrpcmd=""
stripcmd=""