]> git.eshelyaron.com Git - emacs.git/commitdiff
fix typo in ns_appdir target find command
authorAdrian Robert <Adrian.B.Robert@gmail.com>
Sun, 20 Jul 2008 13:19:56 +0000 (13:19 +0000)
committerAdrian Robert <Adrian.B.Robert@gmail.com>
Sun, 20 Jul 2008 13:19:56 +0000 (13:19 +0000)
src/ChangeLog
src/Makefile.in

index baa61d86c01dd16f22ee9f9902f5dc6253229931..c2be06592539b6ce333864b4fbce6f0e4abdcec2 100644 (file)
@@ -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):
index 05fec55cd3923002a7902f763a42d55ffa1fdf80..1768a006feaa60216fab6f883664348ac371ee7f 100644 (file)
@@ -1335,7 +1335,7 @@ ${ns_appdir}: ${ns_appsrc}
        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 ; )