dont fail on bootstrap due to missing libs
This commit is contained in:
parent
ecddf7a880
commit
ff960d7862
|
@ -273,6 +273,7 @@ ${AUTOHEADER:-autoheader}
|
||||||
libbootstrap()
|
libbootstrap()
|
||||||
{
|
{
|
||||||
i=$1
|
i=$1
|
||||||
|
if [ -d ${LIBDIR}/${i} ] ; then
|
||||||
echo "Entering directory ${LIBDIR}/${i}"
|
echo "Entering directory ${LIBDIR}/${i}"
|
||||||
cd ${LIBDIR}/${i}
|
cd ${LIBDIR}/${i}
|
||||||
rm -f aclocal.m4
|
rm -f aclocal.m4
|
||||||
|
@ -322,6 +323,9 @@ libbootstrap()
|
||||||
fi
|
fi
|
||||||
rm -rf autom4te*.cache
|
rm -rf autom4te*.cache
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "Skipping directory ${LIBDIR}/${i}"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue