diff options
author | dequis <dx@dxzone.com.ar> | 2018-04-10 22:42:45 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2018-04-10 22:49:27 -0300 |
commit | 8d7b0a4e9e47c2d392f6fc8f8749d4c5fe6e2604 (patch) | |
tree | e6e70acca1e893d2e1238ef684d2640f0f4b98e8 | |
parent | 8c4af56eab902acafa291763f950ee7b3331938d (diff) |
debian: add ${DEB_HOST_MULTIARCH} to pkgconfig install path
Fixes lintian pkg-config-unavailable-for-cross-compilation
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index fbcc341f..6831eefa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,9 @@ bitlbee (3.5.1-1.1) UNRELEASED; urgency=medium * Add existence check to chmod call in bitlbee-common.postinst (Closes: #816200). + [ dequis ] + * Fix lintian pkg-config-unavailable-for-cross-compilation + -- dequis <dx@dxzone.com.ar> Mon, 19 Mar 2018 22:18:43 -0300 bitlbee (3.5.1-1) unstable; urgency=medium diff --git a/debian/rules b/debian/rules index 8cdb9628..08111792 100755 --- a/debian/rules +++ b/debian/rules @@ -44,12 +44,12 @@ build-stamp: dh_testdir mkdir -p debian/build-native - ROOT=$$PWD; cd debian/build-native; $(BITLBEE_CONFIGURE_VERSION) $(CONFIGURE_OVERRIDES) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --events=libevent --otr=$(BITLBEE_OTR) --systemdsystemunitdir=/lib/systemd/system $(BITLBEE_CONFIGURE_FLAGS) + ROOT=$$PWD; cd debian/build-native; $(BITLBEE_CONFIGURE_VERSION) $(CONFIGURE_OVERRIDES) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --events=libevent --otr=$(BITLBEE_OTR) --systemdsystemunitdir=/lib/systemd/system --pcdir=/usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig $(BITLBEE_CONFIGURE_FLAGS) $(MAKE) -C debian/build-native ifeq ($(BITLBEE_LIBPURPLE),1) mkdir -p debian/build-libpurple - ROOT=$$PWD; cd debian/build-libpurple; $(BITLBEE_CONFIGURE_VERSION) $(CONFIGURE_OVERRIDES) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --systemdsystemunitdir=/lib/systemd/system --purple=1 $(BITLBEE_CONFIGURE_FLAGS) + ROOT=$$PWD; cd debian/build-libpurple; $(BITLBEE_CONFIGURE_VERSION) $(CONFIGURE_OVERRIDES) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --systemdsystemunitdir=/lib/systemd/system --pcdir=/usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig --purple=1 $(BITLBEE_CONFIGURE_FLAGS) $(MAKE) -C debian/build-libpurple endif |