diff options
author | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
commit | 022eb86624280ef9db72559a99f9253a3d003132 (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /lang/sather | |
parent | 1625c0b6c06f52d627a1188b73ab66598be1896e (diff) | |
download | pkgsrc-022eb86624280ef9db72559a99f9253a3d003132.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'lang/sather')
-rw-r--r-- | lang/sather/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/sather/Makefile b/lang/sather/Makefile index 198d0dfe106..1e1f2b2eae1 100644 --- a/lang/sather/Makefile +++ b/lang/sather/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/01/24 13:51:15 grant Exp $ +# $NetBSD: Makefile,v 1.15 2004/01/27 00:53:11 heinz Exp $ DISTNAME= sather-1.2.1 PKGREVISION= 2 @@ -78,7 +78,7 @@ do-install: ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/sather/Library \ ${PREFIX}/lib/sather/System ${FIND} ${PREFIX}/lib/sather -name \*.config -o -name Makefile \ - -o -name \*.orig | ${XARGS} ${RM} -f + -o -name \*.orig -print | ${XARGS} ${RM} -f ${INSTALL_DATA} ${WRKSRC}/Emacs/*.info* ${PREFIX}/info ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sather cd ${WRKSRC}/Doc && ${PAX} -rw . ${PREFIX}/share/doc/sather |