diff options
author | jbrjake <[email protected]> | 2008-03-22 14:33:09 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-03-22 14:33:09 +0000 |
commit | 57ba7c9342c2319723be2a7d327535b4950bd1bd (patch) | |
tree | 2e7120c4c442bb816152129e334d31e01d6f13c6 /configure | |
parent | d4dbb3abde3d18a5f0ca4d4c40f71a3199f0ddc5 (diff) |
Makes snapshots the default build method for both make and jam. To build a regular release with jam, use "./configure --release". To build a regular release with make, use "make all".
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1356 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -97,12 +97,12 @@ else MAKE=make fi -# If the user included the --snapshot argument, mark it down. -if [[ $1 = "--snapshot" ]] || [[ $2 = "--snapshot" ]] +# Unless the user wants a release build, configure for SVN snapshots +if [[ $1 = "--release" ]] || [[ $2 = "--release" ]] then - SNAPSHOT=1 -else SNAPSHOT=0 +else + SNAPSHOT=1 fi # We fought the law and the law won |