aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2002-12-10 16:53:24 +0000
committerAndreas Schwab2002-12-10 16:53:24 +0000
commit810e89c7698eed8a519ab52c1aeee0b074994511 (patch)
tree3bbe3bbf74a8a35a0c221d7c54632c26bbdd65e5
parent2eb46b2df249746874003e9d2a0454308feb5372 (diff)
downloademacs-810e89c7698eed8a519ab52c1aeee0b074994511.tar.gz
emacs-810e89c7698eed8a519ab52c1aeee0b074994511.zip
Fix syntax for find.
-rw-r--r--mac/ChangeLog4
-rwxr-xr-xmac/make-package2
2 files changed, 5 insertions, 1 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog
index 23f0314a4db..0a2e8f8bd39 100644
--- a/mac/ChangeLog
+++ b/mac/ChangeLog
@@ -1,3 +1,7 @@
12002-12-10 Andreas Schwab <schwab@suse.de>
2
3 * make-package: Fix syntax for find.
4
12002-12-08 Steven Tamm <steventamm@mac.com> 52002-12-08 Steven Tamm <steventamm@mac.com>
2 6
3 * INSTALL: Added description about make-package 7 * INSTALL: Added description about make-package
diff --git a/mac/make-package b/mac/make-package
index 81ea44915fb..df781c0f499 100755
--- a/mac/make-package
+++ b/mac/make-package
@@ -265,7 +265,7 @@ if test "$with_app" == "yes"; then
265 ## Copy Emacs application 265 ## Copy Emacs application
266 cp -r Emacs.app ${tempappdir} 266 cp -r Emacs.app ${tempappdir}
267 ## Delete any CVS files 267 ## Delete any CVS files
268 find ${tempappdir} -name "CVS" -type d -execdir rm -rf {} \; 268 find ${tempappdir} -name "CVS" -type d -exec rm -rf {} \;
269 269
270 ## Have application be a symlink to ${prefix}/bin/emacs 270 ## Have application be a symlink to ${prefix}/bin/emacs
271 if test "$app_symlink" == "yes"; then 271 if test "$app_symlink" == "yes"; then