Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
841429e6
Commit
841429e6
authored
Jun 08, 2005
by
simonmar
Browse files
[project @ 2005-06-08 07:56:55 by simonmar]
use test -f instead of -s, for portability.
parent
56f5960b
Changes
1
Hide whitespace changes
Inline
Side-by-side
distrib/Makefile-bin.in
View file @
841429e6
...
...
@@ -231,7 +231,7 @@ install-bin:
if test -n "$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \
done;
for i in $(PACKAGE_OPT_BINS) ""; do \
if test -n "$$i" -a ! -
s
"$(bindir)/$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \
if test -n "$$i" -a ! -
f
"$(bindir)/$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \
done;
@for i in $(VERSION_SYMLINKS_FOR) ""; do \
if [ "x$$i" != "x" ]; then \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment