From: Maxim Mamontov Date: Sat, 12 Jan 2013 11:43:13 +0000 (+0200) Subject: Fixed installation path for rlm_stg project. X-Git-Tag: 2.409~384 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/c913a42e2208692b293f03c75c501e1d3fc23903 Fixed installation path for rlm_stg project. --- diff --git a/projects/rlm_stg/Makefile b/projects/rlm_stg/Makefile index faa8aa30..6190491f 100644 --- a/projects/rlm_stg/Makefile +++ b/projects/rlm_stg/Makefile @@ -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)