From 8ac446bac2bc4a93c8d7950d09788a4ba295d407 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Thu, 6 Aug 2015 17:49:12 -0400 Subject: [PATCH] Bug 1191819 - part 1 - substitute MOZ_BZ2_CFLAGS as a list; r=mshal We appear to be inconsistent about which CFLAGS variables get substituted as lists (most things relating to widget libraries, for instance) and which are just raw strings (most everything else). This patch is a first step towards making everything a list, which makes the next patch much easier to write. The other variables can be converted as a followup bug. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 8bbb834ab3ad..c4d0154ebc18 100644 --- a/configure.in +++ b/configure.in @@ -8855,7 +8855,7 @@ AC_SUBST(MOZ_NATIVE_BZ2) AC_SUBST(MOZ_JPEG_CFLAGS) AC_SUBST_LIST(MOZ_JPEG_LIBS) -AC_SUBST(MOZ_BZ2_CFLAGS) +AC_SUBST_LIST(MOZ_BZ2_CFLAGS) AC_SUBST_LIST(MOZ_BZ2_LIBS) AC_SUBST(MOZ_PNG_CFLAGS) AC_SUBST_LIST(MOZ_PNG_LIBS)