diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-02-12 18:44:45 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-02-12 18:44:45 (GMT) |
commit | e39abc5bb830ddfe1f5439013b622102875ea86d (patch) | |
tree | 5eca65612180b38c37cac7db3122f892819a5be7 /config/conclude.in | |
parent | 7209479d8e52f96148b7f88d6f9ddefde99c2ce4 (diff) | |
download | hdf5-e39abc5bb830ddfe1f5439013b622102875ea86d.zip hdf5-e39abc5bb830ddfe1f5439013b622102875ea86d.tar.gz hdf5-e39abc5bb830ddfe1f5439013b622102875ea86d.tar.bz2 |
[svn-r264] Some versions of install allow only one file name at a time.
Diffstat (limited to 'config/conclude.in')
-rw-r--r-- | config/conclude.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config/conclude.in b/config/conclude.in index 07b94f3..cb88ec3 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -36,11 +36,15 @@ install: $(LIB) $(PUB_HDR) $(PROGS) fi @if test -n "$(PUB_HDR)"; then \ test -d $(includedir) || mkdir $(includedir) || exit 1; \ - (set -x; $(INSTALL_DATA) $(PUB_HDR) $(includedir)/. || exit 1); \ + for f in $(PUB_HDR); do \ + (set -x; $(INSTALL_DATA) $$f $(includedir)/. || exit 1); \ + done; \ fi @if test -n "$(PROGS)"; then \ test -d $(bindir) || mkdir $(bindir) || exit 1; \ - (set -x; $(INSTALL_PROGRAM) $(PROGS) $(bindir)/. || exit 1); \ + for f in $(PROGS); do \ + (set -x; $(INSTALL_PROGRAM) $$f $(bindir)/. || exit 1); \ + done; fi # Removes those things that `make install' (would have) installed. |