From a16fe5d14a52474a69deefb9f0a7dce662c9cf9f Mon Sep 17 00:00:00 2001 From: gingold Date: Wed, 8 Sep 2010 07:27:11 +0000 Subject: 2010-09-08 Tristan Gingold 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: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163989 138bc75d-0d04-0410-961f-82ee72b054a4 --- libiberty/configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libiberty/configure.ac') diff --git a/libiberty/configure.ac b/libiberty/configure.ac index 32ec8d9c095..4de83f95ada 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -671,10 +671,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 AC_SUBST(pexecute) -- cgit v1.2.1