beautified --disable-*-port options
authorkmh <kmh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 17 May 2001 07:03:12 +0000 (07:03 +0000)
committerkmh <kmh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 17 May 2001 07:03:12 +0000 (07:03 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@824 4a8a32a2-be11-0410-ad9d-d568d2c75423

configure
configure.in

index e1bcf72a170600ff73999c02386beeeb17f231e0..33cd1706d0edc56f23ab537159233f76d886e955 100755 (executable)
--- a/configure
+++ b/configure
@@ -12,21 +12,21 @@ ac_help=
 ac_default_prefix=/usr/local
 # Any additions from configure.in:
 ac_help="$ac_help
---disable-mcs51-port: Excludes the Intel mcs51 port"
+  --disable-mcs51-port    Excludes the Intel mcs51 port"
 ac_help="$ac_help
---disable-gbz80-port: Excludes the Gameboy gbz80 port"
+  --disable-gbz80-port    Excludes the Gameboy gbz80 port"
 ac_help="$ac_help
---disable-z80-port: Excludes the z80 port"
+  --disable-z80-port      Excludes the z80 port"
 ac_help="$ac_help
---disable-avr-port: Excludes the AVR port"
+  --disable-avr-port      Excludes the AVR port"
 ac_help="$ac_help
---disable-ds390-port: Excludes the DS390 port"
+  --disable-ds390-port    Excludes the DS390 port"
 ac_help="$ac_help
---disable-pic-port: Excludes the PIC port"
+  --disable-pic-port      Excludes the PIC port"
 ac_help="$ac_help
---disable-i186-port: Excludes the I186 port"
+  --disable-i186-port     Excludes the I186 port"
 ac_help="$ac_help
---disable-tlcs900h-port: Excludes the TLCS900H port"
+  --disable-tlcs900h-port Excludes the TLCS900H port"
 
 # Initialize some variables set by options.
 # The variables have the same names as the options, with
@@ -539,7 +539,7 @@ fi
 
 
 
-for ac_prog in gawk mawk nawk awk
+for ac_prog in mawk gawk nawk awk
 do
 # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
index 926ba7eed345a131222ecd3573034f77bd267674..78100ce26ae73c22a78d8bb1cd3ee7c77799eb45 100755 (executable)
@@ -214,7 +214,7 @@ AC_DEFINE_UNQUOTED(SRCDIR, "${config_in}")
 
 # Now handle the port selection
 rm -f ports.all ports.build
-AC_ARG_ENABLE(mcs51-port,--disable-mcs51-port: Excludes the Intel mcs51 port)
+AC_ARG_ENABLE(mcs51-port,[  --disable-mcs51-port    Excludes the Intel mcs51 port])
 echo mcs51 >>ports.all
 if test "$enable_mcs51_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_MCS51, 1)
@@ -223,7 +223,7 @@ else
     AC_DEFINE_UNQUOTED(OPT_DISABLE_MCS51, 0)
 fi
 
-AC_ARG_ENABLE(gbz80-port,--disable-gbz80-port: Excludes the Gameboy gbz80 port)
+AC_ARG_ENABLE(gbz80-port,[  --disable-gbz80-port    Excludes the Gameboy gbz80 port])
 echo z80 >>ports.all
 if test "$enable_gbz80_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_GBZ80, 1)
@@ -232,7 +232,7 @@ else
     AC_DEFINE_UNQUOTED(OPT_DISABLE_GBZ80, 0)
 fi
 
-AC_ARG_ENABLE(z80-port,--disable-z80-port: Excludes the z80 port)
+AC_ARG_ENABLE(z80-port,[  --disable-z80-port      Excludes the z80 port])
 echo z80 >>ports.all
 if test "$enable_z80_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_Z80, 1)
@@ -241,7 +241,7 @@ else
     AC_DEFINE_UNQUOTED(OPT_DISABLE_Z80, 0)
 fi
 
-AC_ARG_ENABLE(avr-port,--disable-avr-port: Excludes the AVR port)
+AC_ARG_ENABLE(avr-port,[  --disable-avr-port      Excludes the AVR port])
 echo avr >>ports.all
 if test "$enable_avr_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_AVR, 1)
@@ -250,7 +250,7 @@ else
     AC_DEFINE_UNQUOTED(OPT_DISABLE_AVR, 0)
 fi
 
-AC_ARG_ENABLE(ds390-port,--disable-ds390-port: Excludes the DS390 port)
+AC_ARG_ENABLE(ds390-port,[  --disable-ds390-port    Excludes the DS390 port])
 echo ds390 >>ports.all
 if test "$enable_ds390_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_DS390, 1)
@@ -259,7 +259,7 @@ else
     AC_DEFINE_UNQUOTED(OPT_DISABLE_DS390, 0)
 fi
 
-AC_ARG_ENABLE(pic-port,--disable-pic-port: Excludes the PIC port)
+AC_ARG_ENABLE(pic-port,[  --disable-pic-port      Excludes the PIC port])
 echo pic >>ports.all
 if test "$enable_pic_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_PIC, 1)
@@ -268,7 +268,7 @@ else
     AC_DEFINE_UNQUOTED(OPT_DISABLE_PIC, 0)
 fi
 
-AC_ARG_ENABLE(i186-port,--disable-i186-port: Excludes the I186 port)
+AC_ARG_ENABLE(i186-port,[  --disable-i186-port     Excludes the I186 port])
 echo izt >>ports.all
 if test "$enable_i186_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_I186, 1)
@@ -277,7 +277,7 @@ else
     AC_DEFINE_UNQUOTED(OPT_DISABLE_I186, 0)
 fi
 
-AC_ARG_ENABLE(tlcs900h-port,--disable-tlcs900h-port: Excludes the TLCS900H port)
+AC_ARG_ENABLE(tlcs900h-port,[  --disable-tlcs900h-port Excludes the TLCS900H port])
 echo izt >>ports.all
 if test "$enable_tlcs900h_port" = "no"; then
     AC_DEFINE_UNQUOTED(OPT_DISABLE_TLCS900H, 1)