diff options
author | Eike Rathke <erack@redhat.com> | 2012-08-06 23:49:31 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-08-06 23:49:36 +0200 |
commit | 0c6bd06035ee773ec792f2cb0048254957a6f7e9 (patch) | |
tree | 0a82d579fa5f14d3a99d21b6d787a86643661a28 /configure.in | |
parent | 732a75a54f02c3ad16210fa2d62b893cf37a5a5f (diff) |
maybe I'll get this right one time ... BUILD_TYPE GLIB only if not system
Change-Id: I94cea4d8ea33d89a5a2883e6434a97a2692bc505
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 9aacac701f90..c9e625da930c 100644 --- a/configure.in +++ b/configure.in @@ -10967,7 +10967,6 @@ else esac fi AC_SUBST(SYSTEM_GLIB) -BUILD_TYPE="$BUILD_TYPE GLIB" dnl Get system's glib flags and libs. dnl The i18npool LanguageTag wrapper uses it for liblangtag. @@ -10976,6 +10975,8 @@ GLIB_CFLAGS='' GLIB_LIBS='' if test "$SYSTEM_GLIB" = YES; then PKG_CHECK_MODULES( GLIB, glib-2.0 ) +else + BUILD_TYPE="$BUILD_TYPE GLIB" fi AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) |