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:
@@ -176,7 +176,7 @@ anitest.app/Contents/PkgInfo: anitest$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in bttrfly.gif hooked.gif tbttrfly.gif mondrian.ico; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -408,7 +408,7 @@ fl_sample3.app/Contents/PkgInfo: fl_sample3$(EXEEXT) $(top_srcdir)/src/mac/carbo
|
||||
data_files:
|
||||
@mkdir -p ./bitmaps
|
||||
@for f in bookmarks.bmp class_icon.bmp class_icon1.bmp copy.bmp cut.bmp file_icon.bmp folder_icon.bmp help_icon.bmp new.bmp nextmark.bmp open.bmp paste.bmp prevmark.bmp res_icon.bmp save.bmp saveall.bmp search.bmp start95_dp.bmp start95_pr.bmp tile.bmp; do \
|
||||
if test ! -e ./bitmaps/$$f ; \
|
||||
if test ! -f ./bitmaps/$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/bitmaps/$$f -newer ./bitmaps/$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -194,7 +194,7 @@ studio.app/Contents/PkgInfo: studio$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.p
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in studio_resources.wxr; do \
|
||||
if test ! -e ./$$f ; \
|
||||
if test ! -f ./$$f ; \
|
||||
then x=yep ; \
|
||||
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
||||
fi; \
|
||||
|
@@ -178,7 +178,7 @@ stctest.app/Contents/PkgInfo: stctest$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info
|
||||
data:
|
||||
@mkdir -p .
|
||||
@for f in stctest.cpp; 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