]> git.stg.codes - stg.git/commitdiff
Fixed installation path for rlm_stg project.
authorMaxim Mamontov <faust.madf@gmail.com>
Sat, 12 Jan 2013 11:43:13 +0000 (13:43 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Sat, 12 Jan 2013 11:43:13 +0000 (13:43 +0200)
projects/rlm_stg/Makefile

index faa8aa307a921879a42fcf503e2e7b6911bc0715..6190491f70a6d709c83a617d62c50edb09c795cd 100644 (file)
@@ -58,16 +58,16 @@ install: install-bin
 
 install-bin:
 ifeq ($(DEBUG), yes)
-       install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/lib/$(PROG)
+       install -D -m $(BIN_MODE) -o $(OWNER) $(PROG) $(PREFIX)/usr/lib/freeradius/$(PROG)
 else
-       install -D -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/$(PROG)
+       install -D -m $(BIN_MODE) -o $(OWNER) -s $(PROG) $(PREFIX)/usr/lib/freeradius/$(PROG)
 endif
        $(MAKE) -C $(DIR_LIBSRC) install
 
 uninstall: uninstall-bin
 
 uninstall-bin:
-       rm -f $(PREFIX)/usr/lib/$(PROG)
+       rm -f $(PREFIX)/usr/lib/freeradius/$(PROG)
 
 ifneq ($(MAKECMDGOALS),distclean)
 ifneq ($(MAKECMDGOALS),clean)