Revision: 1706 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1706&view=re... Author: hyperair Date: 2010-11-05 18:33:35 +0000 (Fri, 05 Nov 2010)
Log Message: ----------- Wrap ENABLE_$PLUGIN conditionals with AS_TR_SH
Modified Paths: -------------- trunk/geany-plugins/build/common.m4
Modified: trunk/geany-plugins/build/common.m4 =================================================================== --- trunk/geany-plugins/build/common.m4 2010-11-05 18:33:09 UTC (rev 1705) +++ trunk/geany-plugins/build/common.m4 2010-11-05 18:33:35 UTC (rev 1706) @@ -15,7 +15,7 @@ dnl if enableval is not auto, then we make the decision here. Otherwise this dnl this needs to be done in GP_CHECK_PLUGIN_DEPS if test "$m4_tolower(AS_TR_SH(enable_$1))" != "auto"; then - AM_CONDITIONAL(m4_toupper(ENABLE_$1), + AM_CONDITIONAL(m4_toupper(AS_TR_SH(ENABLE_$1)), test "m4_tolower($AS_TR_SH(enable_$1))" = "yes") fi ]) @@ -33,5 +33,5 @@ [m4_tolower(AS_TR_SH(enable_$1))=no]) fi
- AM_CONDITIONAL(m4_toupper(ENABLE_$2), test "$m4_tolower(AS_TR_SH(enable_$1_)" = yes) + AM_CONDITIONAL(m4_toupper(AS_TR_SH(ENABLE_$2)), test "$m4_tolower(AS_TR_SH(enable_$1_)" = yes) ])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.