|
From: <sv...@va...> - 2010-06-10 06:26:32
|
Author: bart Date: 2010-06-10 07:26:21 +0100 (Thu, 10 Jun 2010) New Revision: 11169 Log: Follow-up for r11164: made sure that the --build-id=none configure test works (was reported by Dave Goodell). Modified: trunk/configure.in Modified: trunk/configure.in =================================================================== --- trunk/configure.in 2010-06-09 23:55:25 UTC (rev 11168) +++ trunk/configure.in 2010-06-10 06:26:21 UTC (rev 11169) @@ -1285,9 +1285,8 @@ safe_CFLAGS=$CFLAGS CFLAGS="-Wl,--build-id=none" -AC_TRY_COMPILE( -[ ], -[return 0; ], +AC_LINK_IFELSE( +[AC_LANG_PROGRAM([ ], [return 0;])], [ AC_SUBST([FLAG_NO_BUILD_ID], ["-Wl,--build-id=none"]) AC_MSG_RESULT([yes]) |