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
This commit is contained in:
Manfred Hollstein 1998-03-05 00:28:14 +00:00
parent 05abeea015
commit c940e6278c
1 changed files with 8 additions and 0 deletions

View File

@ -65,6 +65,14 @@ case "${target}" in
esac
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
if [ -f ${frag} ]; then
echo "Appending ${frag} to target-mkfrag"