From 7c5e27c0e5d1fecfc6098189b1104afe03332ccb Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Thu, 29 Mar 2007 09:01:22 +0000 Subject: [PATCH 1/1] only get todays files from top level dir git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/script/rebuild-makefiles.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/script/rebuild-makefiles.sh b/build/script/rebuild-makefiles.sh index 95f8bfdac5..2dd2abe5fd 100644 --- a/build/script/rebuild-makefiles.sh +++ b/build/script/rebuild-makefiles.sh @@ -180,11 +180,11 @@ add_win_files () { ### starts with wx***.zip -for f in `find ${WINSRCDIR}/ -name wx\*.zip ` ; do +for f in `find ${WINSRCDIR}/ -maxdepth 0 -name wx\*.zip ` ; do cp $f ${WORKDIR}/archives/win/`basename $f | sed -e "s/.zip//"`-${CURDATE}.zip done -for f in `find ${WINSRCDIR}/ -name wx\*.exe ` ; do +for f in `find ${WINSRCDIR}/ -maxdepth 0 -name wx\*.exe ` ; do cp $f ${WORKDIR}/archives/win/`basename $f | sed -e "s/.exe//"`-${CURDATE}.exe done -- 2.45.2