From d2da73cf68a5150ec65f9d95c6906de5bd57a9cc Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 24 May 2021 20:51:07 +0100 Subject: Add the -devel switch to Config. This makes the script use defaults that make development easier. --- Config | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Config') 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 -- cgit