diff options
author | Sadie Powell <sadie@witchery.services> | 2021-05-24 20:51:07 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-05-26 04:13:42 +0100 |
commit | d2da73cf68a5150ec65f9d95c6906de5bd57a9cc (patch) | |
tree | 8633d5a91aef233ff33df3073a068adcc4970e08 /Config | |
parent | 100b24074d4a5680db33422bfb9131ceb0ade866 (diff) |
Add the -devel switch to Config.
This makes the script use defaults that make development easier.
Diffstat (limited to 'Config')
-rwxr-xr-x | Config | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -149,6 +149,9 @@ while [ $# -ge 1 ] ; do echo "-nointro Skip intro (disclaimer, etc)" echo "-quick Skip questions, go straight to cmake" exit 0 + elif [ $1 = "-devel" ] ; then + DEBUG="yes" + INSTDIR="$PWD/run" elif [ $1 = "-nocache" ] ; then IGNORE_CACHE="1" elif [ $1 = "-nointro" ] ; then |