Skip to content
Snippets Groups Projects
Commit 13612a97 authored by Tom Lane's avatar Tom Lane
Browse files

Repair incorrect assumption that all versions of 'install' know

how to install multiple files in one invocation.
parent f0b0016e
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# Copyright (c) 1994, Regents of the University of California # 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 ...@@ -20,7 +20,7 @@ createlang: createlang.sh
sed -e 's/__DLSUFFIX__/$(DLSUFFIX)/' $< > $@ sed -e 's/__DLSUFFIX__/$(DLSUFFIX)/' $< > $@
install: all installdirs install: all installdirs
$(INSTALL_SCRIPT) $(SCRIPTS) $(bindir) for i in $(SCRIPTS); do $(INSTALL_SCRIPT) $$i $(bindir); done
installdirs: installdirs:
$(mkinstalldirs) $(bindir) $(mkinstalldirs) $(bindir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment