diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-20 22:18:37 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-20 23:01:03 -0500 |
| commit | 14015304b662e8f8ccce46c5a6927af6a14c510b (patch) | |
| tree | 1d250e8bcefea6b6e3f40887fbc60e262bd6d241 /configure | |
| parent | 0ac543de94f4f5e7e79d59a56df60937cdd3cd24 (diff) | |
| download | focaccia-qemu-14015304b662e8f8ccce46c5a6927af6a14c510b.tar.gz focaccia-qemu-14015304b662e8f8ccce46c5a6927af6a14c510b.zip | |
Make glib mandatory and fixup utils appropriately
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure index 6873e13cd4..79ddcad6a0 100755 --- a/configure +++ b/configure @@ -1848,8 +1848,7 @@ fi if $pkg_config --modversion gthread-2.0 > /dev/null 2>&1 ; then glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null` glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null` - libs_softmmu="$glib_libs $libs_softmmu" - libs_tools="$glib_libs $libs_tools" + LIBS="$glib_libs $LIBS" else echo "glib-2.0 required to compile QEMU" exit 1 |