aboutsummaryrefslogtreecommitdiff
path: root/libiberty/configure
diff options
context:
space:
mode:
authorgingold <gingold@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-08 07:27:11 +0000
committergingold <gingold@138bc75d-0d04-0410-961f-82ee72b054a4>2010-09-08 07:27:11 +0000
commit34b79de45104a350489d7bc497077d286d7a85b2 (patch)
tree12fc08c77d625f0ad48577efc3c22f822d6f34db /libiberty/configure
parent04bd8c82a8250d7dfac2fe479c4a820464e08662 (diff)
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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@163989 138bc75d-0d04-0410-961f-82ee72b054a4
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 b47bc94248d..9a3b2d30859 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