r53634 - /desktop/unstable/gtk+3.0/debian/rules
pochu at users.alioth.debian.org
pochu at users.alioth.debian.org
Mon Sep 11 16:17:47 UTC 2017
Author: pochu
Date: Mon Sep 11 16:17:47 2017
New Revision: 53634
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=53634
Log:
rename configure flag vars
No need for these upper case names anymore which were magic in CDBS but are
no more
Modified:
desktop/unstable/gtk+3.0/debian/rules
Modified: desktop/unstable/gtk+3.0/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B3.0/debian/rules?rev=53634&op=diff
==============================================================================
--- desktop/unstable/gtk+3.0/debian/rules [utf-8] (original)
+++ desktop/unstable/gtk+3.0/debian/rules [utf-8] Mon Sep 11 16:17:47 2017
@@ -44,11 +44,11 @@
NEWS := NEWS$(shell find -maxdepth 1 -size +4k -name NEWS -exec echo ".gz" \;)
README := README$(shell find -maxdepth 1 -size +4k -name README -exec echo ".gz" \;)
-DEB_CONFIGURE_EXTRA_FLAGS = \
+configure_flags_common = \
--libdir=/$(LIBDIR) \
--enable-test-print-backend
-DEB_CONFIGURE_FLAGS_shared = \
+configure_flags_deb = \
--enable-broadway-backend \
--enable-x11-backend \
--enable-gtk-doc \
@@ -59,18 +59,18 @@
--disable-static
ifeq (,$(filter stage1,$(DEB_BUILD_PROFILES)))
-DEB_CONFIGURE_FLAGS_shared += --enable-colord
+configure_flags_deb += --enable-colord
else
-DEB_CONFIGURE_FLAGS_shared += --disable-colord
+configure_flags_deb += --disable-colord
endif
ifeq (linux,$(DEB_HOST_ARCH_OS))
-DEB_CONFIGURE_FLAGS_shared += --enable-wayland-backend
+configure_flags_deb += --enable-wayland-backend
else
-DEB_CONFIGURE_FLAGS_shared += --disable-wayland-backend
+configure_flags_deb += --disable-wayland-backend
endif
-DEB_CONFIGURE_FLAGS_shared_udeb = \
+configure_flags_udeb = \
--disable-broadway-backend \
--disable-wayland-backend \
--enable-x11-backend \
@@ -92,14 +92,14 @@
dh_auto_configure \
--builddirectory=debian/build/deb \
-- \
- $(DEB_CONFIGURE_EXTRA_FLAGS) \
- $(DEB_CONFIGURE_FLAGS_shared) \
+ $(configure_flags_common) \
+ $(configure_flags_deb) \
$(NULL)
dh_auto_configure \
--builddirectory=debian/build/udeb \
-- \
- $(DEB_CONFIGURE_EXTRA_FLAGS) \
- $(DEB_CONFIGURE_FLAGS_shared_udeb) \
+ $(configure_flags_common) \
+ $(configure_flags_udeb) \
$(NULL)
override_dh_auto_build:
More information about the pkg-gnome-commits
mailing list