]> git.ipfire.org Git - pakfire.git/commitdiff
libpakfire: parser: Disable running in debug mode (by default)
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 1 Jun 2019 12:12:37 +0000 (13:12 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 1 Jun 2019 12:12:37 +0000 (13:12 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/parser/grammar.y

index 638ec570309e3ee0337bef130808013901322998..48ce4f2f1016aa49581b5235d3adc6770d971d43 100644 (file)
@@ -34,8 +34,8 @@
 
 #define YYERROR_VERBOSE 1
 
-#define YYDEBUG 1
-#if ENABLE_DEBUG
+#define YYDEBUG 0
+#if ENABLE_DEBUG && YYDEBUG
        int yydebug = 1;
 #endif