[project @ 2005-06-08 07:56:55 by simonmar]
authorsimonmar <unknown>
Wed, 8 Jun 2005 07:56:55 +0000 (07:56 +0000)
committersimonmar <unknown>
Wed, 8 Jun 2005 07:56:55 +0000 (07:56 +0000)
use test -f instead of -s, for portability.

distrib/Makefile-bin.in

index 60a6b94..ebd59e5 100644 (file)
@@ -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           \