aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-06-28 05:09:37 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-06-28 05:09:37 +0000
commit13612a97b9fcb650af02d29fd05e15c81ebf85ef (patch)
treee7cc1ed90c8a030cd886ecb16bc2096d33398543
parentf0b0016ecb5c87a5c61074f3d6f81a474eae8846 (diff)
downloadpostgresql-13612a97b9fcb650af02d29fd05e15c81ebf85ef.tar.gz
postgresql-13612a97b9fcb650af02d29fd05e15c81ebf85ef.zip
Repair incorrect assumption that all versions of 'install' know
how to install multiple files in one invocation.
-rw-r--r--src/bin/scripts/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/scripts/Makefile b/src/bin/scripts/Makefile
index 7426db49eb8..c08382ffcc0 100644
--- a/src/bin/scripts/Makefile
+++ b/src/bin/scripts/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.5 2000/06/27 00:31:44 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.6 2000/06/28 05:09:37 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -20,7 +20,7 @@ createlang: createlang.sh
sed -e 's/__DLSUFFIX__/$(DLSUFFIX)/' $< > $@
install: all installdirs
- $(INSTALL_SCRIPT) $(SCRIPTS) $(bindir)
+ for i in $(SCRIPTS); do $(INSTALL_SCRIPT) $$i $(bindir); done
installdirs:
$(mkinstalldirs) $(bindir)