Removed obsolete --floppy option.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20064 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2007-02-04 12:56:20 +00:00
parent bf63295e0b
commit ac5beb17a5

15
configure vendored
View File

@ -12,8 +12,6 @@ usage()
Usage: $0 <options> Usage: $0 <options>
options: options:
--floppy <floppy location> Specifies the location of the floppy
(device or image).
--bochs-debug Enables bochs serial debug emulation (activated --bochs-debug Enables bochs serial debug emulation (activated
via kernel settings file). via kernel settings file).
--cross-tools-prefix <prefix> --cross-tools-prefix <prefix>
@ -203,7 +201,6 @@ haikuStaticLibSupCxx=
haikuSharedLibSupCxx= haikuSharedLibSupCxx=
haikuCxxHeadersDir= haikuCxxHeadersDir=
hostGCCVersion=`gcc -dumpversion` hostGCCVersion=`gcc -dumpversion`
floppy=
bochs_debug=0 bochs_debug=0
include_gpl_addons=0 include_gpl_addons=0
target=haiku target=haiku
@ -232,7 +229,6 @@ set_default_value HAIKU_UNARFLAGS x
while [ $# -gt 0 ] ; do while [ $# -gt 0 ] ; do
case "$1" in case "$1" in
--include-gpl-addons) include_gpl_addons=1; shift 1;; --include-gpl-addons) include_gpl_addons=1; shift 1;;
--floppy) assertparam "$1" $#; floppy=$2; shift 2;;
--bochs-debug) bochs_debug=1; shift 1;; --bochs-debug) bochs_debug=1; shift 1;;
--target=*) target=`echo $1 | cut -d'=' -f2-`; shift 1;; --target=*) target=`echo $1 | cut -d'=' -f2-`; shift 1;;
--cross-tools-prefix) assertparam "$1" $#; crossToolsPrefix=$2; shift 2;; --cross-tools-prefix) assertparam "$1" $#; crossToolsPrefix=$2; shift 2;;
@ -252,16 +248,6 @@ while [ $# -gt 0 ] ; do
esac esac
done done
# check parameters
#
if [ -n "$floppy" ]; then
case "$floppy" in
/*) ;;
*) echo "Warning: non-absolute floppy path. Parameter ignored.";
floppy=;;
esac
fi
# detect the build platform # detect the build platform
case "${platform}" in case "${platform}" in
BeOS) revision=`uname -r` BeOS) revision=`uname -r`
@ -315,7 +301,6 @@ cat << EOF > "$buildOutputDir/BuildConfig"
# BuildConfig # BuildConfig
# Note: This file has been automatically generated by configure. # Note: This file has been automatically generated by configure.
FLOPPY_PATH ?= "${floppy}" ;
BOCHS_DEBUG_HACK ?= "${bochs_debug}" ; BOCHS_DEBUG_HACK ?= "${bochs_debug}" ;
INCLUDE_GPL_ADDONS ?= "${include_gpl_addons}" ; INCLUDE_GPL_ADDONS ?= "${include_gpl_addons}" ;
TARGET_PLATFORM ?= "${target}" ; TARGET_PLATFORM ?= "${target}" ;