diff options
author | Stefan Fritsch <sf@sfritsch.de> | 2016-05-29 12:02:43 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@sfritsch.de> | 2016-05-29 12:02:43 +0200 |
commit | a19f1199d5c8b375934697105d759194e5720ac6 (patch) | |
tree | 86e29a4cd3f22508029a1ed454374c4c1ba18c86 | |
parent | be57de2935c807f7fef290d96ce699fc160f0036 (diff) | |
download | apache2-a19f1199d5c8b375934697105d759194e5720ac6.tar.gz |
set SHELL=/bin/bash during configure for reproducible builds
-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 |