From: Stephen D. <sd...@us...> - 2005-05-14 10:24:30
|
Update of /cvsroot/naviserver/naviserver/nsperm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30377/nsperm Modified Files: Makefile Log Message: Use new TCL variable to install shared Tcl files. Index: Makefile =================================================================== RCS file: /cvsroot/naviserver/naviserver/nsperm/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 16 Feb 2005 08:41:07 -0000 1.1.1.1 --- Makefile 14 May 2005 10:24:18 -0000 1.2 *************** *** 31,48 **** # MOD = nsperm.so OBJS = nsperm.o MODINST = cpfiles include ../include/Makefile.build ! moddir = nsperm ! moddat = $(INSTSRVMOD)/$(moddir) ! modtcl = $(INSTTCL)/$(moddir) cpfiles: - $(MKDIR) $(modtcl) - $(INSTALL_DATA) init.tcl $(modtcl)/ - $(INSTALL_DATA) compat.tcl $(modtcl)/ $(MKDIR) $(moddat) for f in passwd group hosts.allow hosts.deny perms; do \ --- 31,45 ---- # + MODNAME = nsperm MOD = nsperm.so OBJS = nsperm.o + TCL = init.tcl compat.tcl MODINST = cpfiles include ../include/Makefile.build ! moddat = $(INSTSRVMOD)/$(MODNAME) cpfiles: $(MKDIR) $(moddat) for f in passwd group hosts.allow hosts.deny perms; do \ |