]> git.stg.codes - stg.git/commitdiff
eq/neq fixes.
authorMaxim Mamontov <faust.madf@gmail.com>
Mon, 16 Mar 2015 20:15:20 +0000 (22:15 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Mon, 16 Mar 2015 20:15:20 +0000 (22:15 +0200)
projects/rscriptd/Makefile
projects/sgauth/Makefile

index cd357bbe794c85058420fcd493fc3ffef959d364..b6812aea20d517854e8d837ab175f30fec282820 100644 (file)
@@ -21,10 +21,10 @@ STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS)))
 
 LIBS += $(addprefix -lstg,$(STGLIBS)) $(LIB_THREAD)
 
-ifneq ($(OS),linux)
-LIBS += -liconv
+ifeq ($(OS),linux)
 D_FLAG = -D
 else
+LIBS += -liconv
 D_FLAG = -d
 endif
 
index 3c538966727c3782e49b4f5443301eaddcd52f67..c1a3c9e9fad8abdee861c50f7ca69bcc96a65e3b 100644 (file)
@@ -20,12 +20,12 @@ STGLIBS_LIBS = $(addprefix -L ../../stglibs/,$(addsuffix .lib,$(STGLIBS)))
 
 LIBS += $(addprefix -lstg,$(STGLIBS)) $(LIB_THREAD)
 
-ifneq ($(OS),linux)
+ifeq ($(OS),linux)
+D_FLAG = -D
+else
 LIBS += -lintl \
         -lc \
         -liconv
-D_FLAG = -D
-else
 D_FLAG = -d
 endif