is less portable, and not supported by Solaris /bin/sh.
Rev: src/nettle/ChangeLog:1.375
Rev: src/nettle/Makefile.in:1.29
+2005-11-24 Niels Möller <niels@s3.kth.se>
+
+ * Makefile.in (distdir): Use [ -f, not [ -e, since the latter
+ is less portable, and not supported by Solaris /bin/sh.
+
2005-11-23 Niels Möller <niels@s3.kth.se>
* testsuite/Makefile.in (DISTFILES): Added teardown-env.
rm -rf "$(distdir)"
mkdir "$(distdir)"
set -e; for f in $(DISTFILES) ; do \
- if [ -e "$$f" ] ; then cp "$$f" "$(distdir)" ; \
+ if [ -f "$$f" ] ; then cp "$$f" "$(distdir)" ; \
else cp "$(srcdir)/$$f" "$(distdir)" ; \
fi ; \
done