diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index b36b0e8..d37da5a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,9 +2,9 @@ xbase64 (3.1.2-7) unstable; urgency=low * New debian/patches/0125-gcc6.patch for gcc-6 compatibility (Closes: #811846). - Thanks to + Thanks to Pino Toscano <pino@debian.org>. * debian/rules: - - Some changes for gcc-6 + - Simplify override_dh_auto_configure. * debian/copyright: - Add year 2016 to debian/*. * debian/watch: diff --git a/debian/rules b/debian/rules index 639643b..ef4e18b 100755 --- a/debian/rules +++ b/debian/rules @@ -22,13 +22,13 @@ DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) #export CXXFLAGS+= -std=c++98 -confflags = --prefix=/usr --mandir=\$${prefix}/share/man --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) --enable-static +#confflags = --prefix=/usr --mandir=\$${prefix}/share/man --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) --enable-static %: dh $@ --with autoreconf override_dh_auto_configure: - ./configure $(confflags) + dh_auto_configure -- --enable-static override_dh_install-arch: chmod -x examples/*.cpp |