From a77104ea4508f59c6f4d8cd2a3b97ccbccd74fc9 Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Sun, 17 Apr 2005 00:07:53 +0000 Subject: [PATCH] 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 --- contrib/samples/animate/Makefile.in | 2 +- contrib/samples/fl/Makefile.in | 2 +- contrib/samples/ogl/studio/Makefile.in | 2 +- contrib/samples/stc/Makefile.in | 2 +- demos/dbbrowse/Makefile.in | 4 ++-- demos/forty/Makefile.in | 2 +- demos/life/Makefile.in | 2 +- demos/poem/Makefile.in | 2 +- samples/console/Makefile.in | 2 +- samples/controls/Makefile.in | 2 +- samples/dialogs/Makefile.in | 2 +- samples/dnd/Makefile.in | 2 +- samples/dragimag/Makefile.in | 2 +- samples/drawing/Makefile.in | 2 +- samples/help/Makefile.in | 4 ++-- samples/html/about/Makefile.in | 2 +- samples/html/help/Makefile.in | 2 +- samples/html/helpview/Makefile.in | 2 +- samples/html/printing/Makefile.in | 2 +- samples/html/test/Makefile.in | 2 +- samples/html/virtual/Makefile.in | 2 +- samples/html/widget/Makefile.in | 2 +- samples/html/zip/Makefile.in | 2 +- samples/image/Makefile.in | 2 +- samples/internat/Makefile.in | 16 ++++++++-------- samples/mobile/styles/Makefile.in | 2 +- samples/opengl/isosurf/Makefile.in | 2 +- samples/opengl/penguin/Makefile.in | 2 +- samples/ownerdrw/Makefile.in | 2 +- samples/richedit/Makefile.in | 2 +- samples/rotate/Makefile.in | 2 +- samples/shaped/Makefile.in | 2 +- samples/sound/Makefile.in | 2 +- samples/splash/Makefile.in | 2 +- samples/stc/Makefile.in | 2 +- samples/xrc/Makefile.in | 2 +- tests/Makefile.in | 2 +- utils/configtool/src/Makefile.in | 2 +- utils/emulator/src/Makefile.in | 2 +- utils/helpview/src/Makefile.in | 2 +- 40 files changed, 49 insertions(+), 49 deletions(-) diff --git a/contrib/samples/animate/Makefile.in b/contrib/samples/animate/Makefile.in index b1ae722a61..2dee6a0ccf 100644 --- a/contrib/samples/animate/Makefile.in +++ b/contrib/samples/animate/Makefile.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; \ diff --git a/contrib/samples/fl/Makefile.in b/contrib/samples/fl/Makefile.in index d5285dc56c..733501453d 100644 --- a/contrib/samples/fl/Makefile.in +++ b/contrib/samples/fl/Makefile.in @@ -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; \ diff --git a/contrib/samples/ogl/studio/Makefile.in b/contrib/samples/ogl/studio/Makefile.in index 74f6c0c5bb..f484a8af23 100644 --- a/contrib/samples/ogl/studio/Makefile.in +++ b/contrib/samples/ogl/studio/Makefile.in @@ -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; \ diff --git a/contrib/samples/stc/Makefile.in b/contrib/samples/stc/Makefile.in index 5ff40f13eb..d89f88004f 100644 --- a/contrib/samples/stc/Makefile.in +++ b/contrib/samples/stc/Makefile.in @@ -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; \ diff --git a/demos/dbbrowse/Makefile.in b/demos/dbbrowse/Makefile.in index 5ade944d33..dcbb578727 100644 --- a/demos/dbbrowse/Makefile.in +++ b/demos/dbbrowse/Makefile.in @@ -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; \ diff --git a/demos/forty/Makefile.in b/demos/forty/Makefile.in index 4127008268..b1690612cb 100644 --- a/demos/forty/Makefile.in +++ b/demos/forty/Makefile.in @@ -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; \ diff --git a/demos/life/Makefile.in b/demos/life/Makefile.in index 29edfc2a53..3eb63c9ca8 100644 --- a/demos/life/Makefile.in +++ b/demos/life/Makefile.in @@ -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; \ diff --git a/demos/poem/Makefile.in b/demos/poem/Makefile.in index 3a1f1f75b7..b7afc3fb78 100644 --- a/demos/poem/Makefile.in +++ b/demos/poem/Makefile.in @@ -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; \ diff --git a/samples/console/Makefile.in b/samples/console/Makefile.in index 53f3973924..f3e65d97a0 100644 --- a/samples/console/Makefile.in +++ b/samples/console/Makefile.in @@ -119,7 +119,7 @@ console$(EXEEXT): $(CONSOLE_OBJECTS) data: @mkdir -p . @for f in testdata.fc; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/controls/Makefile.in b/samples/controls/Makefile.in index a645b92659..ba3c61a005 100644 --- a/samples/controls/Makefile.in +++ b/samples/controls/Makefile.in @@ -175,7 +175,7 @@ controls.app/Contents/PkgInfo: controls$(EXEEXT) $(top_srcdir)/src/mac/carbon/In data: @mkdir -p . @for f in test2.bmp; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/dialogs/Makefile.in b/samples/dialogs/Makefile.in index 8bf54310f6..7de89faf8e 100644 --- a/samples/dialogs/Makefile.in +++ b/samples/dialogs/Makefile.in @@ -189,7 +189,7 @@ dialogs.app/Contents/PkgInfo: dialogs$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info data: @mkdir -p . @for f in tips.txt; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/dnd/Makefile.in b/samples/dnd/Makefile.in index cb6401d9f7..2ab1f170ff 100644 --- a/samples/dnd/Makefile.in +++ b/samples/dnd/Makefile.in @@ -172,7 +172,7 @@ dnd.app/Contents/PkgInfo: dnd$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.plist.i data: @mkdir -p . @for f in wxwin.png; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/dragimag/Makefile.in b/samples/dragimag/Makefile.in index 09271f6686..ae031df438 100644 --- a/samples/dragimag/Makefile.in +++ b/samples/dragimag/Makefile.in @@ -175,7 +175,7 @@ dragimag.app/Contents/PkgInfo: dragimag$(EXEEXT) $(top_srcdir)/src/mac/carbon/In data: @mkdir -p . @for f in backgrnd.png shape01.png shape02.png shape03.png; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/drawing/Makefile.in b/samples/drawing/Makefile.in index 490ff6ae8b..80b9e106a2 100644 --- a/samples/drawing/Makefile.in +++ b/samples/drawing/Makefile.in @@ -175,7 +175,7 @@ drawing.app/Contents/PkgInfo: drawing$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info data: @mkdir -p . @for f in pat4.bmp pat35.bmp pat36.bmp image.bmp mask.bmp; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/help/Makefile.in b/samples/help/Makefile.in index 376d087a05..bf65048ac8 100644 --- a/samples/help/Makefile.in +++ b/samples/help/Makefile.in @@ -177,7 +177,7 @@ help.app/Contents/PkgInfo: help$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.plist data: @mkdir -p . @for f in back.gif books.gif bullet.bmp contents.gif cshelp.txt doc.chm doc.cnt doc.hhc doc.hhk doc.hhp doc.hlp doc.hpj doc.zip forward.gif up.gif; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ @@ -189,7 +189,7 @@ data: data_doc: @mkdir -p ./doc @for f in aindex.html ClassGraph.class ClassGraphPanel.class ClassLayout.class down.gif dxxgifs.tex HIER.html HIERjava.html icon1.gif icon2.gif index.html logo.gif NavigatorButton.class USE_HELP.html wx204.htm wx34.htm wxExtHelpController.html wxhelp.map wx.htm; do \ - if test ! -e ./doc/$$f ; \ + if test ! -f ./doc/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/doc/$$f -newer ./doc/$$f -print` ; \ fi; \ diff --git a/samples/html/about/Makefile.in b/samples/html/about/Makefile.in index a26d08cdea..135a7c49bd 100644 --- a/samples/html/about/Makefile.in +++ b/samples/html/about/Makefile.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; \ diff --git a/samples/html/help/Makefile.in b/samples/html/help/Makefile.in index 10200b23a7..299f4065d3 100644 --- a/samples/html/help/Makefile.in +++ b/samples/html/help/Makefile.in @@ -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; \ diff --git a/samples/html/helpview/Makefile.in b/samples/html/helpview/Makefile.in index 3edd865e38..2166218d20 100644 --- a/samples/html/helpview/Makefile.in +++ b/samples/html/helpview/Makefile.in @@ -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; \ diff --git a/samples/html/printing/Makefile.in b/samples/html/printing/Makefile.in index dbcd25dbf6..41c540fa2b 100644 --- a/samples/html/printing/Makefile.in +++ b/samples/html/printing/Makefile.in @@ -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; \ diff --git a/samples/html/test/Makefile.in b/samples/html/test/Makefile.in index e1be7a303a..edcee67e6a 100644 --- a/samples/html/test/Makefile.in +++ b/samples/html/test/Makefile.in @@ -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; \ diff --git a/samples/html/virtual/Makefile.in b/samples/html/virtual/Makefile.in index abb722fa7c..19ac7d0c83 100644 --- a/samples/html/virtual/Makefile.in +++ b/samples/html/virtual/Makefile.in @@ -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; \ diff --git a/samples/html/widget/Makefile.in b/samples/html/widget/Makefile.in index 7daedf8fa3..8ec8e5c2cf 100644 --- a/samples/html/widget/Makefile.in +++ b/samples/html/widget/Makefile.in @@ -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; \ diff --git a/samples/html/zip/Makefile.in b/samples/html/zip/Makefile.in index 41e5ada8c7..1a7d08d34d 100644 --- a/samples/html/zip/Makefile.in +++ b/samples/html/zip/Makefile.in @@ -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; \ diff --git a/samples/image/Makefile.in b/samples/image/Makefile.in index 0b85ec54de..2dc42d53e7 100644 --- a/samples/image/Makefile.in +++ b/samples/image/Makefile.in @@ -174,7 +174,7 @@ image.app/Contents/PkgInfo: image$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.pli data: @mkdir -p . @for f in horse.png horse.jpg horse.bmp horse.gif horse.pcx horse.pnm horse.tif horse.xpm horse.cur horse.ico horse3.ani smile.xbm; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/internat/Makefile.in b/samples/internat/Makefile.in index 079b6d5837..dc039f4cd1 100644 --- a/samples/internat/Makefile.in +++ b/samples/internat/Makefile.in @@ -175,7 +175,7 @@ internat.app/Contents/PkgInfo: internat$(EXEEXT) $(top_srcdir)/src/mac/carbon/In bg: @mkdir -p ./bg @for f in internat.po internat.mo; do \ - if test ! -e ./bg/$$f ; \ + if test ! -f ./bg/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/bg/$$f -newer ./bg/$$f -print` ; \ fi; \ @@ -187,7 +187,7 @@ bg: cs: @mkdir -p ./cs @for f in internat.po internat.mo; do \ - if test ! -e ./cs/$$f ; \ + if test ! -f ./cs/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/cs/$$f -newer ./cs/$$f -print` ; \ fi; \ @@ -199,7 +199,7 @@ cs: de: @mkdir -p ./de @for f in internat.po internat.mo; do \ - if test ! -e ./de/$$f ; \ + if test ! -f ./de/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/de/$$f -newer ./de/$$f -print` ; \ fi; \ @@ -211,7 +211,7 @@ de: fr: @mkdir -p ./fr @for f in internat.po internat.mo; do \ - if test ! -e ./fr/$$f ; \ + if test ! -f ./fr/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/fr/$$f -newer ./fr/$$f -print` ; \ fi; \ @@ -223,7 +223,7 @@ fr: ja: @mkdir -p ./ja @for f in internat.po internat.mo; do \ - if test ! -e ./ja/$$f ; \ + if test ! -f ./ja/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/ja/$$f -newer ./ja/$$f -print` ; \ fi; \ @@ -235,7 +235,7 @@ ja: ka: @mkdir -p ./ka @for f in internat.po internat.mo; do \ - if test ! -e ./ka/$$f ; \ + if test ! -f ./ka/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/ka/$$f -newer ./ka/$$f -print` ; \ fi; \ @@ -247,7 +247,7 @@ ka: pl: @mkdir -p ./pl @for f in internat.po internat.mo; do \ - if test ! -e ./pl/$$f ; \ + if test ! -f ./pl/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/pl/$$f -newer ./pl/$$f -print` ; \ fi; \ @@ -259,7 +259,7 @@ pl: ru: @mkdir -p ./ru @for f in internat.po internat.mo; do \ - if test ! -e ./ru/$$f ; \ + if test ! -f ./ru/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/ru/$$f -newer ./ru/$$f -print` ; \ fi; \ diff --git a/samples/mobile/styles/Makefile.in b/samples/mobile/styles/Makefile.in index c6341260d7..b32d46afd6 100644 --- a/samples/mobile/styles/Makefile.in +++ b/samples/mobile/styles/Makefile.in @@ -176,7 +176,7 @@ styles.app/Contents/PkgInfo: styles$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.p data: @mkdir -p . @for f in marble.jpg; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/opengl/isosurf/Makefile.in b/samples/opengl/isosurf/Makefile.in index 25df7f75d4..3f33777e6c 100644 --- a/samples/opengl/isosurf/Makefile.in +++ b/samples/opengl/isosurf/Makefile.in @@ -178,7 +178,7 @@ isosurf.app/Contents/PkgInfo: $(__isosurf___depname) $(top_srcdir)/src/mac/carbo data: @mkdir -p . @for f in isosurf.dat.gz; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/opengl/penguin/Makefile.in b/samples/opengl/penguin/Makefile.in index de91feba33..16f30efc9d 100644 --- a/samples/opengl/penguin/Makefile.in +++ b/samples/opengl/penguin/Makefile.in @@ -188,7 +188,7 @@ penguin.app/Contents/PkgInfo: $(__penguin___depname) $(top_srcdir)/src/mac/carbo data: @mkdir -p . @for f in penguin.lwo; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/ownerdrw/Makefile.in b/samples/ownerdrw/Makefile.in index afd546c250..4d6363e2ea 100644 --- a/samples/ownerdrw/Makefile.in +++ b/samples/ownerdrw/Makefile.in @@ -175,7 +175,7 @@ ownerdrw.app/Contents/PkgInfo: ownerdrw$(EXEEXT) $(top_srcdir)/src/mac/carbon/In data: @mkdir -p . @for f in sound.png nosound.png; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/richedit/Makefile.in b/samples/richedit/Makefile.in index 595b9fb361..734c7b57a1 100644 --- a/samples/richedit/Makefile.in +++ b/samples/richedit/Makefile.in @@ -179,7 +179,7 @@ richedit.app/Contents/PkgInfo: richedit$(EXEEXT) $(top_srcdir)/src/mac/carbon/In data: @mkdir -p . @for f in wxLayout.cpp; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/rotate/Makefile.in b/samples/rotate/Makefile.in index b4fca22b03..4c40493b4f 100644 --- a/samples/rotate/Makefile.in +++ b/samples/rotate/Makefile.in @@ -175,7 +175,7 @@ rotate.app/Contents/PkgInfo: rotate$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.p data: @mkdir -p . @for f in kclub.bmp; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/shaped/Makefile.in b/samples/shaped/Makefile.in index 8d49e91c0b..7eca4f9cf8 100644 --- a/samples/shaped/Makefile.in +++ b/samples/shaped/Makefile.in @@ -175,7 +175,7 @@ shaped.app/Contents/PkgInfo: shaped$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.p data: @mkdir -p . @for f in star.png; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/sound/Makefile.in b/samples/sound/Makefile.in index ce79439e5f..37a0fb23cc 100644 --- a/samples/sound/Makefile.in +++ b/samples/sound/Makefile.in @@ -179,7 +179,7 @@ sound.app/Contents/PkgInfo: sound$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info.pli data: @mkdir -p . @for f in 9000g.wav cuckoo.wav doggrowl.wav tinkalink2.wav; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/samples/splash/Makefile.in b/samples/splash/Makefile.in index c1416b85e4..dfb6c00f91 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; \ diff --git a/samples/stc/Makefile.in b/samples/stc/Makefile.in index 5ff40f13eb..d89f88004f 100644 --- a/samples/stc/Makefile.in +++ b/samples/stc/Makefile.in @@ -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; \ diff --git a/samples/xrc/Makefile.in b/samples/xrc/Makefile.in index f298bc6716..cf8ce80d29 100644 --- a/samples/xrc/Makefile.in +++ b/samples/xrc/Makefile.in @@ -194,7 +194,7 @@ xrcdemo.app/Contents/PkgInfo: xrcdemo$(EXEEXT) $(top_srcdir)/src/mac/carbon/Info data: @mkdir -p ./rc @for f in appicon.ico appicon.xpm artprov.xpm artprov.xrc basicdlg.xpm basicdlg.xrc controls.xpm controls.xrc custclas.xpm custclas.xrc derivdlg.xpm derivdlg.xrc fileopen.gif filesave.gif frame.xrc fuzzy.gif menu.xrc platform.xpm platform.xrc quotes.gif resource.xrc scanning.gif sppicon.ico toolbar.xrc uncenter.xpm uncenter.xrc update.gif variable.xpm variable.xrc; do \ - if test ! -e ./rc/$$f ; \ + if test ! -f ./rc/$$f ; \ then x=yep ; \ else x=`find $(srcdir)/rc/$$f -newer ./rc/$$f -print` ; \ fi; \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 5c6cbc3cf2..e3ae6c20b7 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -241,7 +241,7 @@ test_gui.app/Contents/PkgInfo: $(__test_gui___depname) $(top_srcdir)/src/mac/car data: @mkdir -p . @for f in testdata.fc; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/utils/configtool/src/Makefile.in b/utils/configtool/src/Makefile.in index ce3cfd919b..3ab183b11d 100644 --- a/utils/configtool/src/Makefile.in +++ b/utils/configtool/src/Makefile.in @@ -172,7 +172,7 @@ wxconfigtool$(EXEEXT): $(WXCONFIGTOOL_OBJECTS) $(__wxconfigtool___win32rc) data: @mkdir -p . @for f in wxwin250.wxs; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/../configs/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/utils/emulator/src/Makefile.in b/utils/emulator/src/Makefile.in index 1bee6b863d..26b81f40eb 100644 --- a/utils/emulator/src/Makefile.in +++ b/utils/emulator/src/Makefile.in @@ -144,7 +144,7 @@ wxemulator$(EXEEXT): $(WXEMULATOR_OBJECTS) $(__wxemulator___win32rc) data: @mkdir -p . @for f in default.wxe ipaq.wxe bluegradient.jpg ipaq01.jpg; do \ - if test ! -e ./$$f ; \ + if test ! -f ./$$f ; \ then x=yep ; \ else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ fi; \ diff --git a/utils/helpview/src/Makefile.in b/utils/helpview/src/Makefile.in index 686a8206a7..d1bdb137ed 100644 --- a/utils/helpview/src/Makefile.in +++ b/utils/helpview/src/Makefile.in @@ -160,7 +160,7 @@ install_helpview: 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; \ -- 2.45.2