提交 eae30c8f 编写于 作者: A Aurelien Jarno

configure: fix broken test

Since commit d1807a4f ./configure tries
to test files and directories with "test -f", which only test for regular
files. Test with "test -e", which looks for any kind of files.

This unbreak the configure script when not using a separate object
directory.
Signed-off-by: NAurelien Jarno <aurelien@aurel32.net>
上级 74242e0f
......@@ -3241,7 +3241,7 @@ for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_p
done
mkdir -p $DIRS
for f in $FILES ; do
test -f $f || symlink $source_path/$f $f
test -e $f || symlink $source_path/$f $f
done
# temporary config to build submodules
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册