From 297cec5ed3038c10e714ed07e637b0c2b8e079eb Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 4 Jun 2008 17:14:57 +0200 Subject: [PATCH 1/1] adjust default installation target dir for uci lua binding --- lua/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lua/Makefile b/lua/Makefile index 9b6e728..2861d21 100644 --- a/lua/Makefile +++ b/lua/Makefile @@ -1,4 +1,7 @@ include ../Makefile.inc +prefix=/usr/local +libdir=$(prefix)/lib +luadir=$(libdir)/lua/5.1 CPPFLAGS=-I.. $(shell pkg-config --silence-errors --cflags lua5.1) LIBS=-L.. -luci $(shell pkg-config --silence-errors --libs lua5.1) @@ -19,8 +22,8 @@ uci.so: uci.o $(CC) $(CPPFLAGS) $(CFLAGS) $(FPIC) -c -o $@ $< install: - mkdir -p $(DESTDIR)$(prefix)/lib/lua/5.1 - $(INSTALL) -m0644 uci.so $(DESTDIR)$(prefix)/lib/lua/5.1/ + mkdir -p $(DESTDIR)$(luadir) + $(INSTALL) -m0644 uci.so $(DESTDIR)$(luadir)/ clean: rm -f *.so *.o uci.so -- 2.11.0