From 06573427495508b1aa44e7790a9ec3e6d02f8ea2 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Mon, 27 Nov 2006 13:25:06 +0000 Subject: [PATCH] remove .# from makefile tarball git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43676 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build/script/rebuild-makefiles.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/script/rebuild-makefiles.sh b/build/script/rebuild-makefiles.sh index 3a47ee428e..95f8bfdac5 100644 --- a/build/script/rebuild-makefiles.sh +++ b/build/script/rebuild-makefiles.sh @@ -9,7 +9,9 @@ LD_LIBRARY_PATH=/usr/local/lib update_from_cvs() { ( - cd ${WORKDIR}/wxWidgets && cvs -z3 update -P -d + cd ${WORKDIR}/wxWidgets + cvs -z3 update -P -d + find . -name \.#\* | xargs rm -rf ) }