summaryrefslogtreecommitdiff
path: root/mk/scripts.mk
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-26 14:27:46 +0000
committerRoy Marples <roy@marples.name>2008-03-26 14:27:46 +0000
commit833903fc78743ded22abcc49fba285ff9ddb8e8a (patch)
tree726e8d03bacbdb4b43c4165f93192633f4afe324 /mk/scripts.mk
parentccf238f852fd0463e68d33b91f0dd55000c325e3 (diff)
downloadopenrc-833903fc78743ded22abcc49fba285ff9ddb8e8a.tar.gz
openrc-833903fc78743ded22abcc49fba285ff9ddb8e8a.tar.bz2
openrc-833903fc78743ded22abcc49fba285ff9ddb8e8a.tar.xz
use $CP and $SED instead of cp and sed
Diffstat (limited to 'mk/scripts.mk')
-rw-r--r--mk/scripts.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/scripts.mk b/mk/scripts.mk
index e6889fc..e1616cc 100644
--- a/mk/scripts.mk
+++ b/mk/scripts.mk
@@ -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}