summaryrefslogtreecommitdiff
path: root/net
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 /net
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 'net')
-rw-r--r--net/Makefile.FreeBSD2
-rw-r--r--net/Makefile.Linux2
-rw-r--r--net/Makefile.NetBSD2
3 files changed, 3 insertions, 3 deletions
diff --git a/net/Makefile.FreeBSD b/net/Makefile.FreeBSD
index cd1a671..1a661db 100644
--- a/net/Makefile.FreeBSD
+++ b/net/Makefile.FreeBSD
@@ -3,4 +3,4 @@ INC+= iwconfig.sh
.SUFFIXES: .sh.BSD.in
.sh.BSD.in.sh:
- sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
+ ${CP} $< $@
diff --git a/net/Makefile.Linux b/net/Makefile.Linux
index 1a496c7..5cd456e 100644
--- a/net/Makefile.Linux
+++ b/net/Makefile.Linux
@@ -5,4 +5,4 @@ INC+= adsl.sh apipa.sh arping.sh bonding.sh br2684ctl.sh bridge.sh \
.SUFFIXES: .sh.Linux.in
.sh.Linux.in.sh:
- sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
+ ${CP} $< $@
diff --git a/net/Makefile.NetBSD b/net/Makefile.NetBSD
index 2ff4750..9ae5598 100644
--- a/net/Makefile.NetBSD
+++ b/net/Makefile.NetBSD
@@ -1,3 +1,3 @@
.SUFFIXES: .sh.BSD.in
.sh.BSD.in.sh:
- sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
+ ${CP} $< $@