diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 08:40:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 08:40:44 +0000 |
commit | 7efa2adbd46aaccdafa6ddaaf47ed6f77f665d84 (patch) | |
tree | 35f12b75de24af46cce8dff74d7e0db9c91fa08a /debian/patches | |
parent | Merging upstream version 3.8.6. (diff) | |
download | postfix-debian/3.8.6-1.tar.xz postfix-debian/3.8.6-1.zip |
Adding debian version 3.8.6-1.debian/3.8.6-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/Sort-list-of-AUXLIBS-for-reproducible-builds.patch | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/debian/patches/Sort-list-of-AUXLIBS-for-reproducible-builds.patch b/debian/patches/Sort-list-of-AUXLIBS-for-reproducible-builds.patch index 6046dd0..3532879 100644 --- a/debian/patches/Sort-list-of-AUXLIBS-for-reproducible-builds.patch +++ b/debian/patches/Sort-list-of-AUXLIBS-for-reproducible-builds.patch @@ -2,20 +2,30 @@ From: =?utf-8?q?Christian_G=C3=B6ttsche?= <cgzones@googlemail.com> Date: Mon, 1 Jan 2024 19:45:09 +0100 Subject: Sort list of AUXLIBS for reproducible builds +Forwarded: https://www.mail-archive.com/postfix-users@postfix.org/msg101292.html --- makedefs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -diff --git a/makedefs b/makedefs -index d9dc529..2b376b3 100644 ---- a/makedefs -+++ b/makedefs -@@ -211,7 +211,7 @@ echo "#----------------------------------------------------------------" +Index: postfix/makedefs +=================================================================== +--- postfix.orig/makedefs ++++ postfix/makedefs +@@ -184,6 +184,8 @@ + # New York, NY 10011, USA + #-- + ++LC_ALL=C; export LC_ALL ++ + # By now all shells must have functions. + + error() { +@@ -211,7 +213,7 @@ echo "#--------------------------------- echo "# Start of summary of user-configurable 'make makefiles' options." echo "# CCARGS=$CCARGS" echo "# AUXLIBS=$AUXLIBS" -env | grep '^AUXLIBS_' | sed 's/^/# /' -+env | grep '^AUXLIBS_' | sed 's/^/# /' | LC_ALL=C sort ++env | grep '^AUXLIBS_' | sed 's/^/# /' | sort echo "# shared=$shared" echo "# dynamicmaps=$dynamicmaps" echo "# pie=$pie" |