r2520 - /experimental/evolution-data-server/debian/rules

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Wed Mar 26 16:02:21 UTC 2014


Author: pochu
Date: Wed Mar 26 16:02:21 2014
New Revision: 2520

URL: http://svn.debian.org/wsvn/pkg-evolution/?sc=1&rev=2520
Log:
fix passing -c4 to dpkg-gensymbols

Modified:
    experimental/evolution-data-server/debian/rules

Modified: experimental/evolution-data-server/debian/rules
URL: http://svn.debian.org/wsvn/pkg-evolution/experimental/evolution-data-server/debian/rules?rev=2520&op=diff
==============================================================================
--- experimental/evolution-data-server/debian/rules	(original)
+++ experimental/evolution-data-server/debian/rules	Wed Mar 26 16:02:21 2014
@@ -14,8 +14,12 @@
 
 LIBCAMEL := $(shell grep '^Package: libcamel-' debian/control | awk '{ print $$2 }')
 
-DEB_DH_MAKESHLIBS_ARGS_ALL += -V -- -c4
-DEB_DH_MAKESHLIBS_ARGS_$(LIBCAMEL) += -V'$(LIBCAMEL) (>= $(DEB_GNOME_VERSION)), $(LIBCAMEL) (<< $(DEB_GNOME_NEXTVERSION))'
+DEB_DH_MAKESHLIBS_ARGS_ALL += -V
+DEB_DH_MAKESHLIBS_ARGS_$(LIBCAMEL) = -V'$(LIBCAMEL) (>= $(DEB_GNOME_VERSION)), $(LIBCAMEL) (<< $(DEB_GNOME_NEXTVERSION))'
+
+# We can't add -- -c4 above as libcamel will get "-V -- -c4 -V'...'" because
+# it gets $(_ALL) first and then $(_libcamel). So use the env variable.
+export DPKG_GENSYMBOLS_CHECK_LEVEL=4
 
 export DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs -Wl,--as-needed -Wl,-O1
 export DEB_BUILD_MAINT_OPTIONS=hardening=+all




More information about the pkg-evolution-commits mailing list