summaryrefslogtreecommitdiff
path: root/m4/install.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-12-21 01:56:50 +0000
committerJim Meyering <jim@meyering.net>1996-12-21 01:56:50 +0000
commit58dfd6b4420c1d0d9136dfa98829ccd17853b064 (patch)
treeb10ebcf306455a04b25fd831347552f3736adec1 /m4/install.m4
parent5fc47138b1f01f5ec8d449585bd19abea4da7960 (diff)
downloadcoreutils-58dfd6b4420c1d0d9136dfa98829ccd17853b064.tar.xz
copied from automake-1.1l
Diffstat (limited to 'm4/install.m4')
-rw-r--r--m4/install.m413
1 files changed, 13 insertions, 0 deletions
diff --git a/m4/install.m4 b/m4/install.m4
new file mode 100644
index 000000000..78b049217
--- /dev/null
+++ b/m4/install.m4
@@ -0,0 +1,13 @@
+## --------------------------------------------------------- ##
+## Use AC_PROG_INSTALL, supplementing it with INSTALL_SCRIPT ##
+## substitution. ##
+## From Franc,ois Pinard ##
+## --------------------------------------------------------- ##
+
+# serial 1
+
+AC_DEFUN(AM_PROG_INSTALL,
+[AC_REQUIRE([AC_PROG_INSTALL])
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
+AC_SUBST(INSTALL_SCRIPT)dnl
+])