]> git.stg.codes - stg.git/blobdiff - projects/sgconf_xml/Makefile
Fixes due to stupid behaviour of BSD-like install.
[stg.git] / projects / sgconf_xml / Makefile
index 32384e628929d327f08dd7725f92bdb3f4a3d21f..df79bbdb59835525f4512a9fb3844b3491c1d853 100644 (file)
@@ -22,7 +22,8 @@ LIBS += $(addprefix -lstg,$(STGLIBS)) -lexpat $(LIB_THREAD)
 ifeq ($(OS),linux)
 else
 LIBS += -lc \
-       -liconv
+        -liconv
+else
 endif
 
 SEARCH_DIRS = -I ../../include
@@ -67,10 +68,12 @@ install: install-bin install-data
 
 install-bin:
 ifeq ($(DEBUG), yes)
-       install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
-endif
-       install -D -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/bin/$(PROG)
+       mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/bin
+       install -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/bin/$(PROG)
 else
+       mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/bin
+       install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/bin/$(PROG)
+endif
        $(MAKE) -C $(DIR_LIBSRC) install
 
 uninstall: uninstall-bin uninstall-data