diff options
author | Geoffrey Noer <noer@cygnus> | 1998-04-30 01:15:38 +0000 |
---|---|---|
committer | Geoffrey Noer <noer@cygnus> | 1998-04-30 01:15:38 +0000 |
commit | 1bfa8616c396ea6f5aad3fc5f1f022053b279f2e (patch) | |
tree | 1695f45b855f0066bb6a7337e27a69a7dd6cb37a /binutils/configure.in | |
parent | ba7634adf9aa0052c36347b1bb2246226e944f28 (diff) | |
download | gdb-1bfa8616c396ea6f5aad3fc5f1f022053b279f2e.zip gdb-1bfa8616c396ea6f5aad3fc5f1f022053b279f2e.tar.gz gdb-1bfa8616c396ea6f5aad3fc5f1f022053b279f2e.tar.bz2 |
Wed Apr 29 18:05:52 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: Stop appending EXEEXT to the end of
SRCONV_PROG (wrong because that variable may contain multiple
programs)
* Makefile.in: instead, add EXEEXTs to each SRCONV_PROG
program
* configure: regenerate
Diffstat (limited to 'binutils/configure.in')
-rw-r--r-- | binutils/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/configure.in b/binutils/configure.in index db47b9d..8af7f76 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -135,7 +135,7 @@ do if test "x$targ" = "xall"; then all_targets=true BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)' - BUILD_SRCONV='$(SRCONV_PROG)$(EXEEXT)' + BUILD_SRCONV='$(SRCONV_PROG)' NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC" else case $targ in @@ -159,7 +159,7 @@ changequote([,])dnl ;; esac case $targ in - *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)$(EXEEXT)' ;; + *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;; esac case $targ in arm-*pe*) |