diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2014-07-20 01:40:43 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2014-07-20 01:40:43 +0200 |
commit | 5f818ae134304381bc39d67ac1f251b01c4be471 (patch) | |
tree | 9294d2a41fc0ca194f2327d9c255757c2e345db9 | |
parent | d397000c270364ccb37a7d2b56ca94dc94f8b6d7 (diff) |
Pass dpkg-buildflags to actual configure command.
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index c428fc84..e1068919 100755 --- a/debian/rules +++ b/debian/rules @@ -38,7 +38,7 @@ build-stamp: dh_testdir mkdir -p debian/build-native - $(shell dpkg-buildflags --export=configure) ROOT=$$PWD; cd debian/build-native; $(BITLBEE_CONFIGURE_VERSION) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --events=libevent --otr=$(BITLBEE_OTR) --skype=$(BITLBEE_SKYPE) $(BITLBEE_CONFIGURE_FLAGS) + ROOT=$$PWD; cd debian/build-native; $(BITLBEE_CONFIGURE_VERSION) $(shell dpkg-buildflags --export=configure) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --events=libevent --otr=$(BITLBEE_OTR) --skype=$(BITLBEE_SKYPE) $(BITLBEE_CONFIGURE_FLAGS) $(MAKE) -C debian/build-native ifeq ($(BITLBEE_LIBPURPLE),1) |