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

a
	* 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: r18412
This commit is contained in:
Manfred Hollstein 1998-03-05 00:28:12 +00:00
parent 299cd3c1d8
commit e8919ca702

View File

@ -93,6 +93,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"