aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Robert2008-07-20 13:19:56 +0000
committerAdrian Robert2008-07-20 13:19:56 +0000
commite5e2baab2954714d18ec7c97dff30ae631085655 (patch)
tree5a1cdb3f074bde1cf43636e115ab1f93e32b749c
parent89f1e540e1bbee8224fa3e5fddbc92cc44d657c1 (diff)
downloademacs-e5e2baab2954714d18ec7c97dff30ae631085655.tar.gz
emacs-e5e2baab2954714d18ec7c97dff30ae631085655.zip
fix typo in ns_appdir target find command
-rw-r--r--src/ChangeLog6
-rw-r--r--src/Makefile.in2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index baa61d86c01..c2be0659253 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,9 +1,13 @@
12008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
2
3 * Makefile.in (ns_appdir): Fix typo in find command.
4
12008-07-20 Dan Nicolaescu <dann@ics.uci.edu> 52008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
2 6
3 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was 7 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
4 added not supported anymore. 8 added not supported anymore.
5 9
6 * s/usg5-4-2.h (LIBS_SYSTEM): 10 * s/usg5-4-2.h (LIBS_SYSTEM):
7 * s/sol2.h (LIBS_SYSTEM): Do not undefine. 11 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
8 12
9 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF): 13 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
diff --git a/src/Makefile.in b/src/Makefile.in
index 05fec55cd39..1768a006fea 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1335,7 +1335,7 @@ ${ns_appdir}: ${ns_appsrc}
1335 rm -fr ${ns_appdir} 1335 rm -fr ${ns_appdir}
1336 mkdir -p ${ns_appdir} 1336 mkdir -p ${ns_appdir}
1337 ( cd ${ns_appsrc} ; tar cfh - . ) | ( cd ${ns_appdir} ; tar xf - ) 1337 ( cd ${ns_appsrc} ; tar cfh - . ) | ( cd ${ns_appdir} ; tar xf - )
1338 ( cd ${ns_appdir} ; for subdir in `find $${dest} -type d ! -name CVS -print` ; do \ 1338 ( cd ${ns_appdir} ; for subdir in `find . -type d ! -name CVS -print` ; do \
1339 chmod a+rx $${subdir} ; \ 1339 chmod a+rx $${subdir} ; \
1340 rm -rf $${subdir}/CVS ; \ 1340 rm -rf $${subdir}/CVS ; \
1341 rm -f $${subdir}/.cvsignore ; done ; ) 1341 rm -f $${subdir}/.cvsignore ; done ; )