Mercurial > emacs
changeset 96834:d2e4a0ee9816
fix typo in ns_appdir target find command
author | Adrian Robert <Adrian.B.Robert@gmail.com> |
---|---|
date | Sun, 20 Jul 2008 13:19:56 +0000 |
parents | c06568fd3844 |
children | b7b23d50e42d |
files | src/ChangeLog src/Makefile.in |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sun Jul 20 13:03:56 2008 +0000 +++ b/src/ChangeLog Sun Jul 20 13:19:56 2008 +0000 @@ -1,9 +1,13 @@ +2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com> + + * Makefile.in (ns_appdir): Fix typo in find command. + 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu> * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was added not supported anymore. - * s/usg5-4-2.h (LIBS_SYSTEM): + * s/usg5-4-2.h (LIBS_SYSTEM): * s/sol2.h (LIBS_SYSTEM): Do not undefine. * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
--- a/src/Makefile.in Sun Jul 20 13:03:56 2008 +0000 +++ b/src/Makefile.in Sun Jul 20 13:19:56 2008 +0000 @@ -1335,7 +1335,7 @@ rm -fr ${ns_appdir} mkdir -p ${ns_appdir} ( cd ${ns_appsrc} ; tar cfh - . ) | ( cd ${ns_appdir} ; tar xf - ) - ( cd ${ns_appdir} ; for subdir in `find $${dest} -type d ! -name CVS -print` ; do \ + ( cd ${ns_appdir} ; for subdir in `find . -type d ! -name CVS -print` ; do \ chmod a+rx $${subdir} ; \ rm -rf $${subdir}/CVS ; \ rm -f $${subdir}/.cvsignore ; done ; )