From: Alex Rousskov Date: Thu, 3 Apr 2008 21:42:46 +0000 (-0600) Subject: Polished after removing lib/libLtdl from VCS. X-Git-Tag: SQUID_3_1_0_1~49^2~302^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e65e9c79f9e696c1b2bcc423147dd2dabe28767;p=thirdparty%2Fsquid.git Polished after removing lib/libLtdl from VCS. --- diff --git a/bootstrap.sh b/bootstrap.sh index 33dae90d1f..62175dce71 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -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