diff options
author | Andreas Schwab <schwab@suse.de> | 2002-12-10 16:53:24 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2002-12-10 16:53:24 +0000 |
commit | 810e89c7698eed8a519ab52c1aeee0b074994511 (patch) | |
tree | 3bbe3bbf74a8a35a0c221d7c54632c26bbdd65e5 /mac/make-package | |
parent | 2eb46b2df249746874003e9d2a0454308feb5372 (diff) | |
download | emacs-810e89c7698eed8a519ab52c1aeee0b074994511.tar.gz |
Fix syntax for find.
Diffstat (limited to 'mac/make-package')
-rwxr-xr-x | mac/make-package | 2 |
1 files changed, 1 insertions, 1 deletions
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 ## Copy Emacs application cp -r Emacs.app ${tempappdir} ## Delete any CVS files - find ${tempappdir} -name "CVS" -type d -execdir rm -rf {} \; + find ${tempappdir} -name "CVS" -type d -exec rm -rf {} \; ## Have application be a symlink to ${prefix}/bin/emacs if test "$app_symlink" == "yes"; then |