aboutsummaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2014-07-20 01:55:24 +0200
committerJelmer Vernooij <jelmer@samba.org>2014-07-20 01:55:24 +0200
commitd203495723441ec129fde8ba792776b8f5691706 (patch)
tree4e2a29c2258eedc4676f9ad03e69c6339b471550 /debian
parent5f818ae134304381bc39d67ac1f251b01c4be471 (diff)
Allow LDFLAGS to be provided in the environment and consistently use $(LDFLAGS)
when linking (not partially linking).
Diffstat (limited to 'debian')
-rwxr-xr-xdebian/rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules
index e1068919..a4c8c1f3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -43,7 +43,7 @@ build-stamp:
ifeq ($(BITLBEE_LIBPURPLE),1)
mkdir -p debian/build-libpurple
- ROOT=$$PWD; cd debian/build-libpurple; $(BITLBEE_CONFIGURE_VERSION) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --purple=1 $(BITLBEE_CONFIGURE_FLAGS)
+ ROOT=$$PWD; cd debian/build-libpurple; $(BITLBEE_CONFIGURE_VERSION) $(shell dpkg-buildflags --export=configure) $$ROOT/configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --purple=1 $(BITLBEE_CONFIGURE_FLAGS)
$(MAKE) -C debian/build-libpurple
endif