diff options
author | rillig <rillig> | 2006-06-16 09:17:21 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-06-16 09:17:21 +0000 |
commit | 8578337bd8f955660bb1f4383a943e148199bc62 (patch) | |
tree | f54a882e8a581ae4e45936fb5d51d26045eb86d3 /security | |
parent | f8a2a1ad93a3ce39c63085d3f5c6293557f5b022 (diff) | |
download | pkgsrc-8578337bd8f955660bb1f4383a943e148199bc62.tar.gz |
Removed the leading "@" from shell commands.
Diffstat (limited to 'security')
-rw-r--r-- | security/logcheck/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/security/logcheck/Makefile b/security/logcheck/Makefile index 65a4a1a039b..30d505d0412 100644 --- a/security/logcheck/Makefile +++ b/security/logcheck/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2006/03/04 21:30:34 jlam Exp $ +# $NetBSD: Makefile,v 1.15 2006/06/16 09:17:21 rillig Exp $ DISTNAME= logcheck-1.1.1 PKGREVISION= 1 @@ -20,12 +20,12 @@ CONF_FILES+= ${EGDIR}/logcheck.${f} ${PKG_SYSCONFDIR}/logcheck.${f} .endfor pre-configure: - @${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.old - @${SED} -e "s+/usr/local+${PREFIX}+g" \ + ${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.old + ${SED} -e "s+/usr/local+${PREFIX}+g" \ < ${WRKSRC}/Makefile.old > ${WRKSRC}/Makefile - @${MV} ${WRKSRC}/systems/freebsd/logcheck.sh \ + ${MV} ${WRKSRC}/systems/freebsd/logcheck.sh \ ${WRKSRC}/systems/freebsd/logcheck.sh.old - @${SED} -e "s+/usr/local+${PREFIX}+g" \ + ${SED} -e "s+/usr/local+${PREFIX}+g" \ -e "s+@PKG_SYSCONFDIR@+${PKG_SYSCONFDIR}+g" \ ${WRKSRC}/systems/freebsd/logcheck.sh.old > \ ${WRKSRC}/systems/freebsd/logcheck.sh |