1
1

Fix the CFLAGS argument to the BLCR component.

Due to a typo (probably cut/paste error) the CFLAGS/CPPFLAGS/LDFLAGS/LIBS arguments were not propogated to the BLCR component.

This changes a few {{{crs_blcr_check_}}} to {{{crs_blcr_save}}}, which they should have been all along.

This needs to be applied to v1.3 as well :/

This commit was SVN r21860.
Этот коммит содержится в:
Josh Hursey 2009-08-20 21:28:19 +00:00
родитель 6b17d63891
Коммит 7f31473bd7

Просмотреть файл

@ -94,12 +94,12 @@ AC_DEFUN([MCA_crs_blcr_CONFIG],[
# we just strip them off for this component
AC_MSG_WARN([Removed -pedantic and -Wundef from CFLAGS for blcr component because libcr.h is not really ANSI C])
# Strip off problematic arguments
crs_blcr_CFLAGS="`echo $crs_blcr_check_CFLAGS | sed 's/-pedantic//g'`"
crs_blcr_CFLAGS="`echo $crs_blcr_save_CFLAGS | sed 's/-pedantic//g'`"
crs_blcr_CFLAGS="`echo $crs_blcr_CFLAGS | sed 's/-Wundef//g'`"
crs_blcr_CPPFLAGS="`echo $crs_blcr_check_CPPFLAGS | sed 's/-pedantic//g'`"
crs_blcr_CPPFLAGS="`echo $crs_blcr_save_CPPFLAGS | sed 's/-pedantic//g'`"
crs_blcr_CPPFLAGS="`echo $crs_blcr_CPPFLAGS | sed 's/-Wundef//g'`"
crs_blcr_LDFLAGS="$crs_blcr_check_LDFLAGS"
crs_blcr_LIBS="$crs_blcr_check_LIBS"
crs_blcr_LDFLAGS="$crs_blcr_save_LDFLAGS"
crs_blcr_LIBS="$crs_blcr_save_LIBS"
#
# Add to wrapper compiler
crs_blcr_WRAPPER_EXTRA_CFLAGS="$crs_blcr_CFLAGS"