diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 82abaf63..fa70401a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ apache2 (2.4.20-3) UNRELEASED; urgency=low * Fix conffiles that may have got the wrong content during upgrade from wheezy to early jessie versions. Closes: #794933 + * Set SHELL=/bin/bash during configure to get reproducible builds regardless + of where /bin/sh points to. -- Stefan Fritsch <sf@debian.org> Sat, 28 May 2016 19:03:19 +0200 diff --git a/debian/rules b/debian/rules index b18d9234..8556adcd 100755 --- a/debian/rules +++ b/debian/rules @@ -102,7 +102,7 @@ override_dh_auto_configure: generate-maintainer-scripts prebuild-checks support/ --enable-mods-shared="all cgi ident authnz_fcgi" \ --enable-mods-static="unixd logio watchdog version" \ CFLAGS="$(AP2_CFLAGS)" CPPFLAGS="$(AP2_CPPFLAGS)" LDFLAGS="$(AP2_LDFLAGS)" \ - LTFLAGS="$(AP2_LTFLAGS)" + LTFLAGS="$(AP2_LTFLAGS)" SHELL=/bin/bash debian/config-dir/apache2.conf: debian/config-dir/apache2.conf.in |