summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-05-24 20:51:07 +0100
committerSadie Powell <sadie@witchery.services>2021-05-26 04:13:42 +0100
commitd2da73cf68a5150ec65f9d95c6906de5bd57a9cc (patch)
tree8633d5a91aef233ff33df3073a068adcc4970e08
parent100b24074d4a5680db33422bfb9131ceb0ade866 (diff)
Add the -devel switch to Config.
This makes the script use defaults that make development easier.
-rwxr-xr-xConfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/Config b/Config
index c0df999c6..246209036 100755
--- a/Config
+++ b/Config
@@ -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