The "configure" script should now be able to detect the Haiku platform as well.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14104 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
e5ee1dad6a
commit
4cbe4925ea
22
configure
vendored
22
configure
vendored
@ -100,19 +100,15 @@ if [ -n "$floppy" ]; then
|
||||
esac
|
||||
fi
|
||||
|
||||
# BeOS
|
||||
if [ "${platform}" = "BeOS" ] ; then
|
||||
standard_gcc_settings
|
||||
|
||||
# Linux
|
||||
else if [ "${platform}" = "Linux" ] ; then
|
||||
standard_gcc_settings
|
||||
|
||||
# Unknown platform
|
||||
else
|
||||
echo Unsupported platform: ${platform}
|
||||
exit 1
|
||||
fi; fi
|
||||
# platform specific GCC settings
|
||||
case "$platform" in
|
||||
BeOS | Haiku | Linux)
|
||||
standard_gcc_settings ;;
|
||||
*)
|
||||
# Unknown platform
|
||||
echo Unsupported platform: ${platform}
|
||||
exit 1 ;;
|
||||
esac
|
||||
|
||||
# Generate BuildConfig
|
||||
cat << EOF > build/BuildConfig
|
||||
|
Loading…
Reference in New Issue
Block a user