mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-19 10:13:13 +00:00
Don't attempt to (illegally) configure a subdir if we don't recognize it.
Instead just create a warning message that says the directory cannot be configured because it isn't recognized. This also gets rid of a bunch of warning messages from the auto* tools. llvm-svn: 16463
This commit is contained in:
parent
c90eff97f7
commit
5c162ec83c
@ -31,7 +31,9 @@ do
|
|||||||
"Java") AC_CONFIG_SUBDIRS([projects/Java]) ;;
|
"Java") AC_CONFIG_SUBDIRS([projects/Java]) ;;
|
||||||
"llvm-tv") AC_CONFIG_SUBDIRS([projects/llvm-tv]) ;;
|
"llvm-tv") AC_CONFIG_SUBDIRS([projects/llvm-tv]) ;;
|
||||||
"llvm-fefw") AC_CONFIG_SUBDIRS([projects/llvm-fefw]) ;;
|
"llvm-fefw") AC_CONFIG_SUBDIRS([projects/llvm-fefw]) ;;
|
||||||
*) AC_CONFIG_SUBDIRS(${i}) ;;
|
*)
|
||||||
|
AC_MSG_WARN([Unknown projects (${i})won't be configured automatically])
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user