]> git.ipfire.org Git - pakfire.git/commitdiff
libpakfire: parser: Make operators left-associative
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 14 Mar 2019 05:04:47 +0000 (05:04 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 14 Mar 2019 05:04:47 +0000 (05:04 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/parser/grammar.y

index a3bfb44ddd32f1eb39cc3177d7623c4564e99390..f90942359421332b3556602d076c3a5559e1c6dc 100644 (file)
@@ -74,6 +74,9 @@ char* current_block = NULL;
 %type <string>                                 value;
 %type <string>                                 words;
 
+%left APPEND
+%left ASSIGN
+
 %union {
        char* string;
 }