diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 12:54:57 +0000 |
commit | f725dc8ef5848b5e69ebefdc7c1f1517f26643fb (patch) | |
tree | 61e738084a4bfbaac41e371a863552bfb8c6ed2a /security/gcipher | |
parent | 985ad018658ea12b1f67b9a76f8252fac0982438 (diff) |
Notes
Diffstat (limited to 'security/gcipher')
-rw-r--r-- | security/gcipher/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/gcipher/Makefile b/security/gcipher/Makefile index d67ee0fd8afa..5a9ae341ea7f 100644 --- a/security/gcipher/Makefile +++ b/security/gcipher/Makefile @@ -42,7 +42,7 @@ do-install: (cd ${WRKSRC}/src; \ ${INSTALL_SCRIPT} gcipher ${PREFIX}/bin/gcipher; \ ${INSTALL_DATA} gcipher.desktop ${PREFIX}/share/gnome/applications; \ - for i in `find . -name '*.py' \ + for i in `${FIND} . -name '*.py' \ -o -name '*.pyc' \ -o -name '*.glade' \ -o -name '*.gladep'`; do \ @@ -50,7 +50,7 @@ do-install: done) (cd ${WRKSRC}/plugins; \ - for i in `find . -name '*.py' \ + for i in `${FIND} . -name '*.py' \ -o -name '*.glade' \ -o -name '*.gladep'`; do \ ${INSTALL_DATA} "$$i" "${GCIPHER_PREFIX}/plugins/$$i"; \ |