Commit 870900c9 authored by Sergey Petrunya's avatar Sergey Petrunya

Fix win32 binary zipfile name and contents to match the usual expectations

parent 17494737
...@@ -28,23 +28,36 @@ VER=`cat configure.in | ...@@ -28,23 +28,36 @@ VER=`cat configure.in |
echo Version string: $VER. echo Version string: $VER.
ZIPNAME=mariadb-$VER-win32-noinstall # Remove '-maria-' from version number
ZIPFILE="$ZIPNAME.zip" VER_NO_MARIA=${VER/maria-/}
sh -x scripts/make_win_bin_dist $ZIPNAME
# We want the final zip to be named like this:
# mariadb-noinstall-5.1.38-win32.zip
ZIPNAME=mariadb-noinstall-$VER_NO_MARIA-win32
ZIPFILE=$ZIPNAME.zip
# The top directory inside the zip should be called like this:
# mariadb-5.1-38-win32
ZIPCONTENT=mariadb-$VER_NO_MARIA-win32
# This will make $ZIPCONTENT.zip
sh -x scripts/make_win_bin_dist $ZIPCONTENT
mv $ZIPCONTENT.zip $ZIPFILE
rm -rf unpack rm -rf unpack
mkdir unpack mkdir unpack
cd unpack cd unpack
wget -O base.list.gz \ wget -O base.list.gz \
http://askmonty.org/wiki/images/6/6c/Mariadb-5.1-pre-beta-file-list.txt.gz http://askmonty.org/wiki/images/5/57/Mariadb-5.1-pre-beta-file-list-r2.txt.gz
gunzip base.list.gz gunzip base.list.gz
unzip ../$ZIPFILE unzip ../$ZIPFILE
(cd $ZIPNAME; /bin/find . | sort ) > new.list (cd $ZIPNAME; /bin/find . | sort ) > new.list
set +x
diff -u base.list new.list || true diff -u base.list new.list || true
RES=$? RES=$?
set -x
cd .. cd ..
rm -rf unpack rm -rf unpack
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment