git-checkout eterhack && git-pull && git-checkout test && git-merge eterhack || exit 1
fi
-export CFLAGS=-D_FORTIFY_SOURCE=2
+export CFLAGS="-D_FORTIFY_SOURCE=2 -g"
echo "Autoconf..."
autoconf -f
./configure --with-opengl --enable-debug || exit 1
--- /dev/null
+CURBRANCH=eter-1.0.9
+ETERVERSION=1.0.9
+BRANCH=eter-$ETERVERSION
+ORIGTAG=wine-0.9.60
+VERSION=`date -d today "+%Y%m%d"`
#!/bin/sh
-# Creates branches from remote repository origin
+. ./config.in
-CURBRANCH=eter-1.0.9
+# Creates branches from remote repository origin
cd ..
#!/bin/sh
-CURBRANCH=eter-1.0.9
+. ./config.in
cd ..
#!/bin/sh
-# Script to release tarball from the branch
-ETERVERSION=1.0.9
-BRANCH=eter-$ETERVERSION
-ORIGTAG=wine-0.9.60
-VERSION=`date -d today "+%Y%m%d"`
+. ./config.in
+
+# Script to release tarball from the branch
TEMPREPO=wine-temp-$VERSION.repo
git-clone $CURGIT $TEMPREPO || exit 1
cd $TEMPREPO || exit 1
-git pull origin $BRANCH
+git pull origin $CURBRANCH
#git-checkout $BRANCH || exit 1
pure_rev=`git-rev-parse refs/tags/$ORIGTAG`
test -n "pure_rev" || exit 1
-eterhack_rev=`git-rev-parse refs/remotes/origin/$BRANCH`
+eterhack_rev=`git-rev-parse refs/remotes/origin/$CURBRANCH`
test -n "eterhack_rev" || exit 1
echo "Create logs..."
#!/bin/sh
+. ./config.in
+
# Script to release tarball from the current GIT
-#VERSION=20080406
-VERSION=`date -d today "+%Y%m%d"`
BRANCH=eterhack
#TEMPREPO=~/Projects/wine-temp-$VERSION.repo
#!/bin/sh
-VERSION=`date -d today "+%Y%m%d"`
-ETERVERSION=1.0.9
-CURBRANCH=eter-$ETERVERSION
+. ./config.in
# parent dir is not missed in pure
cd ..
git commit libs/wine/config.c -m "Update source version"
# return to current branch
git checkout master || exit 1
+echo "Autoconf..."
+autoconf -f
+git commit configure -m "Build our configure" || exit 1
echo "All done correctly"