diff options
author | tv <tv@pkgsrc.org> | 2004-04-23 02:03:18 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-04-23 02:03:18 +0000 |
commit | b21513c38b3aa750f37670539fddce5f3afa2969 (patch) | |
tree | 6f127847ae92fe7bad022359fa158e280b6e27f0 /bootstrap/files | |
parent | 3320bcd91740a1ca221bd470fd275d09918632a2 (diff) | |
download | pkgsrc-b21513c38b3aa750f37670539fddce5f3afa2969.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-x | bootstrap/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="" |