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:
Axel Dörfler
2005-09-02 13:23:51 +00:00
parent e5ee1dad6a
commit 4cbe4925ea
Vendored
+9 -13
View File
@@ -100,19 +100,15 @@ if [ -n "$floppy" ]; then
esac esac
fi fi
# BeOS # platform specific GCC settings
if [ "${platform}" = "BeOS" ] ; then case "$platform" in
standard_gcc_settings BeOS | Haiku | Linux)
standard_gcc_settings ;;
# Linux *)
else if [ "${platform}" = "Linux" ] ; then # Unknown platform
standard_gcc_settings echo Unsupported platform: ${platform}
exit 1 ;;
# Unknown platform esac
else
echo Unsupported platform: ${platform}
exit 1
fi; fi
# Generate BuildConfig # Generate BuildConfig
cat << EOF > build/BuildConfig cat << EOF > build/BuildConfig