From: Amos Jeffries Date: Tue, 15 Jun 2010 07:51:34 +0000 (-0600) Subject: Maintenance: Formater skip libltdl dirs X-Git-Tag: SQUID_3_2_0_1~137 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2db7809dc9382ef1c48f14bd5fec54847880aa4f;p=thirdparty%2Fsquid.git Maintenance: Formater skip libltdl dirs --- diff --git a/scripts/source-maintenance.sh b/scripts/source-maintenance.sh index 4f595d6d39..ad743c7a06 100755 --- a/scripts/source-maintenance.sh +++ b/scripts/source-maintenance.sh @@ -76,7 +76,9 @@ for FILENAME in `ls -1`; do esac - if test -d $FILENAME ; then + if test "$FILENAME" = "libltdl" ; then + : + elif test -d $FILENAME ; then cd $FILENAME srcformat ${ROOT} || exit 1 cd ..