use $CP and $SED instead of cp and sed

This commit is contained in:
Roy Marples
2008-03-26 14:27:46 +00:00
parent ccf238f852
commit 833903fc78
12 changed files with 13 additions and 25 deletions

View File

@@ -16,10 +16,10 @@ SED_REPLACE= -e 's:@SHELL@:${SH}:g' -e 's:@LIB@:${LIBNAME}:g' -e 's:@SYSCONFDIR
# Tweak our shell scripts
.SUFFIXES: .sh.in .in
.sh.in.sh:
sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@
.in:
sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
${SED} ${SED_REPLACE} ${SED_EXTRA} $< > $@
all: ${OBJS}