Skip to content
Snippets Groups Projects
Commit 6e3e37d3 authored by sven.panne@aedion.de's avatar sven.panne@aedion.de
Browse files

[project @ 1999-07-15 16:20:46 by panne]

Two checks for empty file lists added.
parent a61ce4a4
No related merge requests found
......@@ -195,11 +195,11 @@ install :: config-pkgs install-dirs install-bin install-libs install-datas
.PHONY: install-bin install-libs install-datas
install-bin:
for i in $(PACKAGE_BIN_INSTALL); do \
$(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i $(bindir); \
for i in $(PACKAGE_BIN_INSTALL) ""; do \
test -n "$i" && $(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i $(bindir); \
done;
for i in $(PACKAGE_BINS); do \
$(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i$(exeext) $(bindir); \
for i in $(PACKAGE_BINS) ""; do \
test -n "$i" && $(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i$(exeext) $(bindir); \
done;
for i in $(VERSION_SYMLINKS_FOR) ""; do \
if [ "x$$i" != "x" ]; then \
......
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