From 0f5ff1db7e51de9c81df6c101098fc8014b84217 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Mon, 9 Oct 2017 09:40:56 +0000 Subject: [PATCH] Bash: Removed compilation type suffix on build/bin path if you need to differentiate it you can add $CTYPE variable as suffix of bin/build path conf --- bin/compiler/includes/defines.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/compiler/includes/defines.sh b/bin/compiler/includes/defines.sh index 2f08dd7c8..57c809c47 100644 --- a/bin/compiler/includes/defines.sh +++ b/bin/compiler/includes/defines.sh @@ -5,6 +5,3 @@ then CCTYPE=${CCTYPE^} # capitalize first letter if it's not yet fi -[ $CTYPE == "Debug" ] && BUILDPATH="$BUILDPATH/debug/" || BUILDPATH="$BUILDPATH/release/" - -[ $CTYPE == "Debug" ] && BINPATH="$BINPATH/debug/" || BINPATH="$BINPATH/release/"