From 3059d08dfdb01c68fe886721fc32c1c1ec9621cc Mon Sep 17 00:00:00 2001 From: Laurent Bigonville Date: Mon, 9 May 2011 15:32:04 +0200 Subject: [PATCH] Correctly pass flags to configure * debian/rules: - Correctly pass flags to configure --- debian/changelog | 4 +++- debian/rules | 12 +++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5de4dad..21f27c3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,10 @@ nut (2.6.0-3) UNRELEASED; urgency=low * Drop HAL package and build-dependencies (Closes: #613197) * debian/control: - Bump Standards-Version to 3.9.2 (no further changes) + * debian/rules: + - Correctly pass flags to configure - -- Laurent Bigonville Mon, 09 May 2011 15:02:47 +0200 + -- Laurent Bigonville Mon, 09 May 2011 18:07:50 +0200 nut (2.6.0-2) unstable; urgency=low diff --git a/debian/rules b/debian/rules index e1f2863..3820f30 100755 --- a/debian/rules +++ b/debian/rules @@ -6,13 +6,11 @@ include /usr/share/cdbs/1/class/autotools.mk DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) -DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/usr \ - --exec-prefix=/ \ - --sysconfdir=/etc/nut \ - --mandir=/usr/share/man \ - --libdir=/lib \ - --includedir=/usr/include \ - --without-ssl \ +DEB_CONFIGURE_PREFIX := +DEB_CONFIGURE_SYSCONFDIR := /etc/nut +DEB_CONFIGURE_INCLUDEDIR := /usr/include +DEB_CONFIGURE_MANDIR := /usr/share/man +DEB_CONFIGURE_EXTRA_FLAGS := --without-ssl \ --with-cgi \ --with-dev \ --enable-static \