diff options
author | Marius Kintel <marius@kintel.net> | 2013-03-09 18:04:36 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-03-09 18:04:36 (GMT) |
commit | 8711bd25006bda5b63516a222b762e71a9954a56 (patch) | |
tree | 2ca8f83aa6234d73dc7c615512895792a6a19c6f /scripts/release-common.sh | |
parent | e868b4a5a178ceb6b340e16151b0f82ec322fc9a (diff) |
Set preprocessor define for deployment builds. Don't include sparkle in development builds. Note: Development snapshots are considered deployment builds
Diffstat (limited to 'scripts/release-common.sh')
-rwxr-xr-x | scripts/release-common.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/release-common.sh b/scripts/release-common.sh index a30d43a..10a1c18 100755 --- a/scripts/release-common.sh +++ b/scripts/release-common.sh @@ -110,13 +110,12 @@ fi echo "Building openscad-$VERSION ($VERSIONDATE) $CONFIGURATION..." +CONFIG=deploy case $OS in LINUX|MACOSX) - CONFIG=deploy TARGET= ;; WIN) - unset CONFIG export QTDIR=/c/devmingw/qt2009.03 export QTMAKESPEC=win32-g++ export PATH=$PATH:/c/devmingw/qt2009.03/bin:/c/devmingw/qt2009.03/qt/bin @@ -125,7 +124,6 @@ case $OS in TARGET=release ;; LINXWIN) - unset CONFIG . ./scripts/setenv-mingw-xbuild.sh TARGET=release ZIP="zip" |