diff options
author | obrien <obrien@FreeBSD.org> | 2008-06-27 14:59:23 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2008-06-27 14:59:23 +0000 |
commit | b8058c375aa856936aacaae6aeffcb138d78267c (patch) | |
tree | 284d5d6fea2d6a76a08dbfb81224cc64237ab8a2 /gnu/usr.bin/cvs | |
parent | a88994189495574fa34c7a0b584c262bf0bc92ea (diff) | |
download | FreeBSD-src-b8058c375aa856936aacaae6aeffcb138d78267c.zip FreeBSD-src-b8058c375aa856936aacaae6aeffcb138d78267c.tar.gz |
Instead of using .POSIX:, use the cool looking "@:" rule.
Submitted by: ru
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r-- | gnu/usr.bin/cvs/contrib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/usr.bin/cvs/contrib/Makefile b/gnu/usr.bin/cvs/contrib/Makefile index 41e3012..5a8a8b52 100644 --- a/gnu/usr.bin/cvs/contrib/Makefile +++ b/gnu/usr.bin/cvs/contrib/Makefile @@ -1,7 +1,5 @@ # $FreeBSD$ -.POSIX: - .include "../Makefile.inc" .PATH: ${CVSDIR}/contrib @@ -21,6 +19,10 @@ CLEANFILES+= $(SCRIPTS) .SUFFIXES: .sh .pl .in +# Prevent Makefile.in from overwriting Makefile through the suffix rules. +Makefile: + @: + .sh: cp ${.IMPSRC} ${.TARGET} |