From 949eaef46e34a2af0f163b51185a172cb6317448 Mon Sep 17 00:00:00 2001 From: Adrian Robert Date: Sun, 20 Jul 2008 13:19:56 +0000 Subject: [PATCH] fix typo in ns_appdir target find command --- src/ChangeLog | 6 +++++- src/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 1bec53f20d9..545867a9303 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,9 +1,13 @@ +2008-07-19 Adrian Robert + + * Makefile.in (ns_appdir): Fix typo in find command. + 2008-07-20 Dan Nicolaescu * 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): 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} 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 ; ) -- 2.11.4.GIT