Parcourir la source

minor fixes in Makefile.am relates to #107

Stasik0 il y a 10 ans
Parent
commit
72b056915a
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      Makefile.am

+ 3 - 3
Makefile.am

@@ -25,14 +25,14 @@ endif
 # additional encodings
 UA_ENCODING_AMOUNT = 1
 if UA_ENCODING_XML
-UA_ENCODING_AMOUNT := 2 #$$(echo $(UA_ENCODING_AMOUNT)+1 | bc)
+UA_ENCODING_AMOUNT = 2 #$$(echo $(UA_ENCODING_AMOUNT)+1 | bc)
 endif
 
 if UA_ENCODING_JSON
-UA_ENCODING_AMOUNT := 3 #$$(echo $(UA_ENCODING_AMOUNT)+1 | bc)
+UA_ENCODING_AMOUNT = 3 #$$(echo $(UA_ENCODING_AMOUNT)+1 | bc)
 endif
 
-AM_CFLAGS += -D UA_ENCODING_AMOUNT=$(UA_ENCODING_AMOUNT)
+AM_CFLAGS += -DUA_ENCODING_AMOUNT=$(UA_ENCODING_AMOUNT)
 
 # export flags for sub-makefiles
 export GLOBAL_AM_CFLAGS = $(AM_CFLAGS)