aboutsummaryrefslogtreecommitdiff
path: root/libiberty/configure
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2010-09-08 07:27:11 +0000
committerTristan Gingold <gingold@gcc.gnu.org>2010-09-08 07:27:11 +0000
commit16f60fcbe4a61d31199ab4a0154b9fc83e61bcfe (patch)
tree12fc08c77d625f0ad48577efc3c22f822d6f34db /libiberty/configure
parent7370e0da63c435435889f8d752836a436ef476bf (diff)
downloadgcc-16f60fcbe4a61d31199ab4a0154b9fc83e61bcfe.zip
gcc-16f60fcbe4a61d31199ab4a0154b9fc83e61bcfe.tar.gz
gcc-16f60fcbe4a61d31199ab4a0154b9fc83e61bcfe.tar.bz2
re PR bootstrap/44001 (.o vs. obj => @OBJEXT@ and $ac_objext)
2010-09-08 Tristan Gingold <gingold@adacore.com> PR 44001 * maint-tool (missing): Fix pattern for object file. (deps): Use $(objext) for object extension. * Makefile.in (objext): New variable. Replace all occurences of .o with .$(objext) Regenerate with maint-deps * configure.ac (pexecute): Set to the basename. * configure: Regenerate. From-SVN: r163989
Diffstat (limited to 'libiberty/configure')
-rwxr-xr-xlibiberty/configure8
1 files changed, 4 insertions, 4 deletions
diff --git a/libiberty/configure b/libiberty/configure
index b47bc94..9a3b2d3 100755
--- a/libiberty/configure
+++ b/libiberty/configure
@@ -6539,10 +6539,10 @@ fi
# Figure out which version of pexecute to use.
case "${host}" in
- *-*-mingw* | *-*-winnt*) pexecute=./pex-win32.o ;;
- *-*-msdosdjgpp*) pexecute=./pex-djgpp.o ;;
- *-*-msdos*) pexecute=./pex-msdos.o ;;
- *) pexecute=./pex-unix.o ;;
+ *-*-mingw* | *-*-winnt*) pexecute=pex-win32 ;;
+ *-*-msdosdjgpp*) pexecute=pex-djgpp ;;
+ *-*-msdos*) pexecute=pex-msdos ;;
+ *) pexecute=pex-unix ;;
esac