Skip to content
Snippets Groups Projects
Commit 6b088a98 authored by sof's avatar sof
Browse files

[project @ 1999-04-27 18:30:26 by sof]

When installing, append  to entries in PACKAGE_BINS list
parent d7018d5b
No related merge requests found
......@@ -101,7 +101,7 @@ INSTALL_DIR = ./mkdirhier
VERSION_SYMLINKS_FOR=$(package)
# Binaries to install
PACKAGE_BIN_INSTALL=$(PACKAGE_PRL_SCRIPTS) $(PACKAGE_SH_SCRIPTS) $(PACKAGE_BINS)
PACKAGE_BIN_INSTALL=$(PACKAGE_PRL_SCRIPTS) $(PACKAGE_SH_SCRIPTS)
#----------end of user-serviceable parts------------
#
......@@ -202,6 +202,9 @@ install-bin:
for i in $(PACKAGE_BIN_INSTALL); do \
$(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i $(bindir); \
done;
for i in $(PACKAGE_BINS); do \
$(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i$(exeext) $(bindir); \
done;
for i in $(VERSION_SYMLINKS_FOR) ""; do \
if [ "x$$i" != "x" ]; then \
( cd $(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