Browse Source

linux/debug/build.sh : fixed script formatting to remove bug which resulted in automatically generating and -O2 gcc switch.

master
kevin.larke 4 years ago
parent
commit
5e0a02a1fc
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      build/linux/debug/build.sh

+ 5
- 5
build/linux/debug/build.sh View File

@@ -9,12 +9,12 @@ cd ${curdir}
9 9
 
10 10
 ../../../configure --prefix=${curdir} \
11 11
 		   --enable-debug \
12
+		   CFLAGS="-g -Wall" \
13
+		   CXXFLAGS="-g -Wall" \
14
+		   CPPFLAGS= \
15
+		   LDFLAGS= \
16
+		   LIBS=
12 17
 #		   --enable-sonicart \
13
-CFLAGS="-g -Wall" \
14
-CXXFLAGS="-g -Wall" \
15
-CPPFLAGS= \
16
-LDFLAGS= \
17
-LIBS=
18 18
 
19 19
 
20 20
 #make

Loading…
Cancel
Save