test for ./configure

removed debugging echo statements
This commit is contained in:
Robin Mills 2012-04-20 00:06:26 +00:00
parent 188e1f451e
commit d965eb21c6

View File

@ -18,7 +18,7 @@ if [ ! -d contrib ]; then
echo "you are in the wrong directory - please run $0 in the main directory (which includes contrib and src)"
exit 1
fi
if [ ! -e configure ]; then make config ; fi
if [ -z $TARGET ]; then export TARGET="MACOSX_DEPLOYMENT_TARGET=10.5" ; fi
# version=$(grep EXIV2_LTVERSION config/config.mk | cut "-d " -f 3 | cut -d: -f 1)
@ -46,9 +46,6 @@ for arch in '-arch i386' '-arch x86_64' ; do
# copy .libs to .arch
for d in $(find . -name ".libs" -type d); do
D=$(dirname $d)/.$a
# echo --------------
# echo d = $d D = $D
# echo --------------
ditto $d $D
done
done