From: Steven Barth Date: Mon, 2 Jun 2008 19:14:56 +0000 (+0000) Subject: * libs/fastindex: Changed Makefile to use LUCI_INSTALLDIR X-Git-Tag: 0.8.0~912 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=95116c8d3b57ee43930931529f745033b93ce2f8;ds=sidebyside * libs/fastindex: Changed Makefile to use LUCI_INSTALLDIR --- diff --git a/libs/fastindex/Makefile b/libs/fastindex/Makefile index 560a35283..d064bbd43 100644 --- a/libs/fastindex/Makefile +++ b/libs/fastindex/Makefile @@ -5,8 +5,8 @@ include ../../build/gccconfig.mk $(COMPILE) $(LUA_CFLAGS) $(FPIC) -c -o $@ $< compile: src/fastindex.o - mkdir -p dist/usr/lib/lua/luci - $(LINK) $(SHLIB_FLAGS) -o dist/usr/lib/lua/luci/fastindex.so src/fastindex.o $(LUA_SHLIBS) + mkdir -p dist$(LUCI_INSTALLDIR) + $(LINK) $(SHLIB_FLAGS) -o dist$(LUCI_INSTALLDIR)/fastindex.so src/fastindex.o $(LUA_SHLIBS) clean: rm -f src/*.o