From 2481e6a24fbcf780f29ea9098600271347df57e3 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 22 Jun 1999 22:50:22 +0000 Subject: 1999-06-23 Mumit Khan * configure.in (HAVE_EXECUTABLE_SUFFIX): Define. * dlltool.c (look_for_prog): Use HAVE_EXECUTABLE_SUFFIX. * dllwrap.c (look_for_prog): Likewise. * resrc.c (look_for_default): Likewise. * configure, config.in: Rebuild. --- binutils/dllwrap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'binutils/dllwrap.c') diff --git a/binutils/dllwrap.c b/binutils/dllwrap.c index 235b5da..84606fb 100644 --- a/binutils/dllwrap.c +++ b/binutils/dllwrap.c @@ -178,7 +178,7 @@ inform (message, va_alist) /* Look for the program formed by concatenating PROG_NAME and the string running from PREFIX to END_PREFIX. If the concatenated string contains a '/', try appending EXECUTABLE_SUFFIX if it is - defined. */ + appropriate. */ static char * look_for_prog (prog_name, prefix, end_prefix) @@ -191,7 +191,7 @@ look_for_prog (prog_name, prefix, end_prefix) cmd = xmalloc (strlen (prefix) + strlen (prog_name) -#ifdef EXECUTABLE_SUFFIX +#ifdef HAVE_EXECUTABLE_SUFFIX + strlen (EXECUTABLE_SUFFIX) #endif + 10); @@ -204,7 +204,7 @@ look_for_prog (prog_name, prefix, end_prefix) int found; found = (stat (cmd, &s) == 0 -#ifdef EXECUTABLE_SUFFIX +#ifdef HAVE_EXECUTABLE_SUFFIX || stat (strcat (cmd, EXECUTABLE_SUFFIX), &s) == 0 #endif ); -- cgit v1.1