[gtkmm] Bug #665267: Fix configure.ac that had a broken shell syntax.
- From: Hubert FiguiÃre <hub src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtkmm] Bug #665267: Fix configure.ac that had a broken shell syntax.
- Date: Fri, 2 Dec 2011 03:28:59 +0000 (UTC)
commit 8c7b608ec7fddbe07be2d59cbe2f94f98e379125
Author: Hub Figuiere <hub figuiere net>
Date: Wed Nov 30 22:53:38 2011 -0800
Bug #665267: Fix configure.ac that had a broken shell syntax.
* configure.ac: fix shell syntax.
Bug #665267
ChangeLog | 7 +++++++
configure.ac | 4 ++--
2 files changed, 9 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 3c3e972..659b30c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-11-30 Hub FiguiÃre <hub figuiere net>
+
+ Fix configure.ac that had a broken shell syntax.
+
+ * configure.ac: fix shell syntax.
+ Bug #665267
+
2011-11-28 John Ralls <jralls ceridwen us>
Fix the build for Quartz (MacOS)
diff --git a/configure.ac b/configure.ac
index 9866057..ac14d38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,12 +77,12 @@ AM_CONDITIONAL([GDK_TARGET_X11], [test "x$gdk_target_x11" = xyes])
AM_CONDITIONAL([GDK_TARGET_BROADWAY], [test "x$gdk_target_broadway" = xyes])
AM_CONDITIONAL([GDK_TARGET_WAYLAND], [test "x$gdk_target_wayland" = xyes])
-if [ "x$GDK_TARGET_WIN32" = xyes ]; then
+if test "x$gdk_target_win32" = xyes ; then
AC_MSG_CHECKING([for native Windows host])
AS_CASE([$host_os], [mingw*], [gtkmm_host_windows=yes], [gtkmm_host_windows=no])
AC_MSG_RESULT([$gtkmm_host_windows])
else
- gtkmm_host_windows = no
+ gtkmm_host_windows=no
fi
AM_CONDITIONAL([HOST_WINDOWS_NATIVE], [test "x$gtkmm_host_windows" = xyes])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]