]> git.saurik.com Git - wxWidgets.git/commitdiff
Rename all setup0.h files to setup.h in git-based release script.
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 4 Jul 2012 11:45:35 +0000 (11:45 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 4 Jul 2012 11:45:35 +0000 (11:45 +0000)
We also need to rename wx/univ/setup0.h and wx/gtk/setup0.h and it probably
doesn't hurt to rename all the other ones even if though they're unused
anyhow.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71958 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/tools/git-make-release

index 3e2c46e32ae37ba1fdb18498ffe7beded859fdae..72513ad4364fc69d925f435b4782081a5afdd65f 100755 (executable)
@@ -48,17 +48,23 @@ cleanup
 
 git archive --prefix=$prefix/ HEAD | (cd ..; tar x)
 cd ..
-mv $prefix/include/wx/msw/setup0.h $prefix/include/wx/msw/setup.h
+# All setup0.h files are supposed to be renamed to just setup.h when checked
+# out and in the distribution.
+find $prefix/include/wx -type f -name setup0.h | while read f; do
+    mv $f ${f%0.h}.h
+done
 
 tar cjf $prefix.tar.bz2 $prefix
 
 cd $prefix
 set +x
 for f in `cat ../eol-native`; do
-    if [ $f == "include/wx/msw/setup0.h" ]; then
-        # we renamed this file above so adjust
-        f="include/wx/msw/setup.h"
-    fi
+    case $f in
+        */setup0.h)
+            # we renamed this file above so adjust
+            f=${f%0.h}.h
+            ;;
+    esac
     unix2dos -q $f
 done
 set -x