]> git.stg.codes - stg.git/commitdiff
Fix installing libraries
authorMaxim Mamontov <faust.madf@gmail.com>
Wed, 21 Sep 2011 09:31:23 +0000 (12:31 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Wed, 21 Sep 2011 09:31:23 +0000 (12:31 +0300)
stglibs/Makefile.in
stglibs/smux.lib/Makefile

index 5bbc24e5bdfe2bf8d710dd06a0b862ab2841ce71..8c97fae8f1d60066a00c55958869c35a857b6147 100644 (file)
@@ -38,7 +38,7 @@ install: $(PROG)
        mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/lib/stg
        install -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/stg/$(PROG)
        mkdir -m $(DIR_MODE) -p $(PREFIX)/usr/include/stg
-       install -m $(DATA_MODE) -o $(OWNER) $(INCS) $(PREFIX)/usr/include/stg/
+       install -m $(DATA_MODE) -o $(OWNER) $(addprefix include/stg/,$(INCS)) $(PREFIX)/usr/include/stg/
 
 uninstall:
        rm -f $(PREFIX)/usr/lib/stg/$(PROG)
index c5824be9c9366382b1cbb405f942b634249e8166..8988da2fb1956b08c4f1f8ae7497f01f13a1d8b4 100644 (file)
@@ -4,7 +4,7 @@ LIB_NAME = stgsmux
 
 SRCS = $(wildcard *.c)
 
-INCS = $(wildcard include/stg/*.h)
+INCS = $(notdir $(wildcard include/stg/*.h))
 
 LIB_INCS = -I ./include/stg