Use 'test -f' since Sun's shell doesn't have 'test -e'
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -179,7 +179,7 @@ about.app/Contents/PkgInfo: about$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.pli
|
||||
data_files:
|
||||
@mkdir -p ./data
|
||||
@for f in about.htm logo.png; do \
|
||||
if test ! -e ./data/$$f ; \
|
||||
if test ! -f ./data/$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/data/$$f -newer ./data/$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -178,7 +178,7 @@ help.app/Contents/PkgInfo: help$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.plist
|
||||
data:
|
||||
@mkdir -p ./helpfiles
|
||||
@for f in Index.hhk another.hhc another.hhp another.htm book1.htm book2.htm contents.hhc main.htm page2-b.htm testing.hhp; do \
|
||||
if test ! -e ./helpfiles/$$f ; \
|
||||
if test ! -f ./helpfiles/$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/helpfiles/$$f -newer ./helpfiles/$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -180,7 +180,7 @@ helpview.app/Contents/PkgInfo: helpview$(EXEEXT) $(top_srcdir)/src/mac/carbon/In
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in test.zip; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -180,7 +180,7 @@ printing.app/Contents/PkgInfo: printing$(EXEEXT) $(top_srcdir)/src/mac/carbon/In
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in logo6.gif test.htm; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -181,7 +181,7 @@ test.app/Contents/PkgInfo: test$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.plist
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in f.html fft.html imagemap.htm imagemap.png pic.png pic2.bmp tables.htm test.htm listtest.htm i18n.gif 8859_2.htm cp1250.htm regres.htm; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -180,7 +180,7 @@ virtual.app/Contents/PkgInfo: virtual$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in start.htm; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -180,7 +180,7 @@ widget.app/Contents/PkgInfo: widget$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.p
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in start.htm; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -177,7 +177,7 @@ zip.app/Contents/PkgInfo: zip$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.plist.i
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in pages.zip start.htm; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
Reference in New Issue
Block a user