]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Polished after removing lib/libLtdl from VCS.
authorAlex Rousskov <rousskov@measurement-factory.com>
Thu, 3 Apr 2008 21:42:46 +0000 (15:42 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Thu, 3 Apr 2008 21:42:46 +0000 (15:42 -0600)
bootstrap.sh

index 33dae90d1fc7e83d29fe60d9b51061a19bff722f..62175dce7158785bfea091db30f6c18ef39a43a9 100755 (executable)
@@ -77,19 +77,18 @@ bootstrap_libtoolize() {
         sed 's/COPYING.LIB/ /g' $makefile > $makefile.new;
         chmod u+w $makefile
         mv $makefile.new $makefile
-        # leave writable, do not run chmod u-w $makefile
+        chmod u-w $makefile
 
         dest=lib/libLtdl
-        # move $src to $dest, preserving CVS structure
+        # move $src to $dest
        if test -d $dest # already exists
        then
-           echo updating $dest
-           # TODO: only move files that changed
+           echo "Updating $dest from $src."
             chmod u+w $dest/*
             mv $src/* $dest/
             rmdir $src
        else
-           echo "Warning: Creating $dest which should have existed."
+           echo "Creating $dest from $src."
            mv $src $dest
         fi
     fi