diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-07-15 03:42:02 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-07-15 03:42:02 +0000 |
commit | 72743e377dd7258ce847ce07f3019aeb3d8bf9bd (patch) | |
tree | 61045d237879f54a7b8f9785680debfc123134dd | |
parent | ead0877781f49e90e18db05e70eb48a5291d1e08 (diff) | |
download | gdb-72743e377dd7258ce847ce07f3019aeb3d8bf9bd.zip gdb-72743e377dd7258ce847ce07f3019aeb3d8bf9bd.tar.gz gdb-72743e377dd7258ce847ce07f3019aeb3d8bf9bd.tar.bz2 |
* configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
avoid confusion with --no-recursion.
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,14 @@ +Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com> + + * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to + avoid confusion with --no-recursion. + +Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com> + + * configure.in: Win32 hosts shouldn't use install -x + * install-sh: remove -x option, and special .exe-handling + hack. + start-sanitize-beos Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com> diff --git a/configure.in b/configure.in index be6bd69..88e0883 100644 --- a/configure.in +++ b/configure.in @@ -1132,7 +1132,7 @@ fi # Record target_configdirs and the configure arguments in Makefile. target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'` targargs=`echo "${arguments}" | \ - sed -e 's/--norecursion//' \ + sed -e 's/--no[^ ]*//' \ -e 's/--cache[a-z-]*=[^ ]*//' \ -e 's/--ho[a-z-]*=[^ ]*//' \ -e 's/--bu[a-z-]*=[^ ]*//' \ |