Commit c940e627 by Manfred Hollstein

config.table: Make locating frag files failsafe even for the special case if...

�
	* config.table: Make locating frag files failsafe even for the
	special case if configuring and building in srcdir.
	* configure.in: Make locating frag files failsafe even for the
	special case if configuring and building in srcdir.

From-SVN: r18414
parent 05abeea0
...@@ -65,6 +65,14 @@ case "${target}" in ...@@ -65,6 +65,14 @@ case "${target}" in
esac esac
for frag in ${frags}; do for frag in ${frags}; do
case ${frag} in
../* )
if [ ${srcdir} = . ]; then
[ -n "${with_target_subdir}" ] && frag=../${frag}
[ -n "${with_multisrctop}" ] && frag=${with_multisrctop}${frag}
fi
;;
esac
frag=${srcdir}/config/$frag frag=${srcdir}/config/$frag
if [ -f ${frag} ]; then if [ -f ${frag} ]; then
echo "Appending ${frag} to target-mkfrag" echo "Appending ${frag} to target-mkfrag"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment