Fix some syslogd pidfile and installing support scripts.

This commit is contained in:
Roy Marples
2008-01-11 21:54:33 +00:00
parent bcbdb0ed13
commit e4e18d21ed
3 changed files with 6 additions and 7 deletions

View File

@@ -14,12 +14,11 @@ VARBASE?= /var
all: ${OBJS}
.in:
sed -e s':@PREFIX@:${PREFIX}:' -e 's:@VARBASE@:${VARBASE}:' $< > $@
sed -e 's:@PREFIX@:${PREFIX}:' -e 's:@VARBASE@:${VARBASE}:' $< > $@
install: all
for x in ${OBJS}; do \
${INSTALL} work/$$x ${DESTDIR}${DIR}; \
done
install: all
${INSTALL} -d ${DESTDIR}${DIR}
${INSTALL} ${OBJS} ${DESTDIR}${DIR}
clean:
rm -f ${OBJS}