From: Michael Wetherell Date: Wed, 18 May 2005 22:41:47 +0000 (+0000) Subject: Redo the temporary fix 'test -f' instead of 'test -e' for Solaris X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0f9aa21f2cd49f0063500fdeec1f7cc5ca354b69?ds=inline Redo the temporary fix 'test -f' instead of 'test -e' for Solaris git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34149 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/splash/Makefile.in b/samples/splash/Makefile.in index 93fdbf1b1a..91c597bb84 100644 --- a/samples/splash/Makefile.in +++ b/samples/splash/Makefile.in @@ -183,7 +183,7 @@ splash.app/Contents/PkgInfo: splash$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.p data: @mkdir -p . @for f in splash.png press.mpg; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \