diff options
author | martti <martti@pkgsrc.org> | 2007-05-10 10:08:24 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2007-05-10 10:08:24 +0000 |
commit | 39dad9dbb7968f8a821352c921493b19ce29a78d (patch) | |
tree | d86d391fe1582451c0f1cd59243d510bb817a7ac /mail/squirrelmail/plugin.mk | |
parent | 7338926d08c3bd867c1d123d8309735faa3cd789 (diff) | |
download | pkgsrc-39dad9dbb7968f8a821352c921493b19ce29a78d.tar.gz |
Some pkglint -Wall fixes.
Diffstat (limited to 'mail/squirrelmail/plugin.mk')
-rw-r--r-- | mail/squirrelmail/plugin.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/squirrelmail/plugin.mk b/mail/squirrelmail/plugin.mk index 3b7cd1beb9b..f2831633d21 100644 --- a/mail/squirrelmail/plugin.mk +++ b/mail/squirrelmail/plugin.mk @@ -1,4 +1,4 @@ -# $NetBSD: plugin.mk,v 1.3 2006/02/17 07:04:25 martti Exp $ +# $NetBSD: plugin.mk,v 1.4 2007/05/10 10:08:24 martti Exp $ DISTNAME?= ${PLUGIN_NAME}-${PLUGIN_VERSION} PKGNAME= sm-${PLUGIN_NAME}-${PLUGIN_VERSION} @@ -19,7 +19,7 @@ PLIST_SUBST+= PLUGIN_DIR=${PLUGIN_DIR:Q} do-install: cd ${WRKSRC:Q} && \ - ${FIND} . -type f ! -name '*.orig' 2>/dev/null | \ - ${PAX} -rw ${FULL_PLUGIN_DIR} + find . -type f ! -name '*.orig' 2>/dev/null | \ + pax -rw ${FULL_PLUGIN_DIR} .include "../../mail/squirrelmail/buildlink3.mk" |