diff options
author | Roy Marples <roy@marples.name> | 2008-03-26 14:27:46 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-26 14:27:46 +0000 |
commit | 833903fc78743ded22abcc49fba285ff9ddb8e8a (patch) | |
tree | 726e8d03bacbdb4b43c4165f93192633f4afe324 /doc | |
parent | ccf238f852fd0463e68d33b91f0dd55000c325e3 (diff) |
use $CP and $SED instead of cp and sed
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.FreeBSD | 2 | ||||
-rw-r--r-- | doc/Makefile.Linux | 2 | ||||
-rw-r--r-- | doc/Makefile.NetBSD | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/Makefile.FreeBSD b/doc/Makefile.FreeBSD index d40d9427..a21536b1 100644 --- a/doc/Makefile.FreeBSD +++ b/doc/Makefile.FreeBSD @@ -2,4 +2,4 @@ SRCS+= net.example.in .SUFFIXES: .BSD.in .BSD.in: - sed ${SED_REPLACE} ${SED_EXTRA} $< > $@ + ${CP} $< $@ diff --git a/doc/Makefile.Linux b/doc/Makefile.Linux index 5981ec1d..405f7ea9 100644 --- a/doc/Makefile.Linux +++ b/doc/Makefile.Linux @@ -2,4 +2,4 @@ SRCS+= net.example.in .SUFFIXES: .Linux.in .Linux.in: - sed ${SED_REPLACE} ${SED_EXTRA} $< > $@ + ${CP} $< $@ diff --git a/doc/Makefile.NetBSD b/doc/Makefile.NetBSD index d40d9427..a21536b1 100644 --- a/doc/Makefile.NetBSD +++ b/doc/Makefile.NetBSD @@ -2,4 +2,4 @@ SRCS+= net.example.in .SUFFIXES: .BSD.in .BSD.in: - sed ${SED_REPLACE} ${SED_EXTRA} $< > $@ + ${CP} $< $@ |