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:
Michael Wetherell
2005-04-17 00:07:53 +00:00
parent 9ad7392b6a
commit a77104ea45
40 changed files with 49 additions and 49 deletions

View File

@@ -199,7 +199,7 @@ dbbrowse.app/Contents/PkgInfo: $(__dbbrowse___depname) $(top_srcdir)/src/mac/car
data_help_std:
@mkdir -p ./help.std
@for f in compiler.htm dbbrowse.hhc dbbrowse.hhk dbbrowse.hhp dbbrowse.htm getcol.htm getcolsh.htm icons.htm picgrams.htm problems.htm remstar.htm sample.htm startprm.htm todo.htm wxdb.htm wxtable.htm; do \
if test ! -e ./help.std/$$f ; \
if test ! -f ./help.std/$$f ; \
then x=yep ; \
else x=`find $(srcdir)/help.std/$$f -newer ./help.std/$$f -print` ; \
fi; \
@@ -211,7 +211,7 @@ data_help_std:
data_help_png:
@mkdir -p ./help.png
@for f in col.png d_closed.png d_open.png dsn.png dsnclose.png dsnopen.png f_closed.png f_open.png gnu.png gtk.png imbau.png kde.png key.png keyf.png linux.png logo.png motif.png msvc.png odbc.png pgmctrl.png redh.png remstar.png server.png suse.png tab.png view.png winnt.png wins.png; do \
if test ! -e ./help.png/$$f ; \
if test ! -f ./help.png/$$f ; \
then x=yep ; \
else x=`find $(srcdir)/help.png/$$f -newer ./help.png/$$f -print` ; \
fi; \

View File

@@ -190,7 +190,7 @@ forty.app/Contents/PkgInfo: forty$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.pli
data:
@mkdir -p .
@for f in about.htm; do \
if test ! -e ./$$f ; \
if test ! -f ./$$f ; \
then x=yep ; \
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
fi; \

View File

@@ -176,7 +176,7 @@ life.app/Contents/PkgInfo: life$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.plist
data:
@mkdir -p .
@for f in breeder.lif; do \
if test ! -e ./$$f ; \
if test ! -f ./$$f ; \
then x=yep ; \
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
fi; \

View File

@@ -179,7 +179,7 @@ wxpoem.app/Contents/PkgInfo: wxpoem$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.p
data:
@mkdir -p .
@for f in wxpoem.txt wxpoem.dat; do \
if test ! -e ./$$f ; \
if test ! -f ./$$f ; \
then x=yep ; \
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
fi; \