Commit 535b86ce by R. Ganesan Committed by Jeff Law

* configure.in: handle with-PACKAGE=no correctly

From-SVN: r18740
parent 362badb0
Sun Mar 22 00:21:46 1998 R. Ganesan <rganesan@novell.com>
* configure.in: Handle with-PACKAGE=no correctly
Fri Mar 20 17:36:23 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (alias.o, bitmap.o, c-aux-info.o, c-common.o,
......
......@@ -34,25 +34,25 @@ copy=cp
# With GNU ld
AC_ARG_WITH(gnu-ld,
[ --with-gnu-ld arrange to work with GNU ld.],
gnu_ld=yes,
gnu_ld="$with_gnu_ld",
gnu_ld=no)
# With GNU as
AC_ARG_WITH(gnu-as,
[ --with-gnu-as arrange to work with GNU as.],
gas=yes,
gas="$with_gnu_as",
gas=no)
# With stabs
AC_ARG_WITH(stabs,
[ --with-stabs arrange to use stabs instead of host debug format.],
stabs=yes,
stabs="$with_stabs",
stabs=no)
# With ELF
AC_ARG_WITH(elf,
[ --with-elf arrange to use ELF instead of host debug format.],
elf=yes,
elf="$with_elf",
elf=no)
# Specify the local prefix
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment