diff options
author | Leo Famulari <leo@famulari.name> | 2016-08-17 23:21:00 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-08-17 23:35:22 -0400 |
commit | 015ee84aac888b3900fa0ee54a1b7e55c083e7d3 (patch) | |
tree | 2ef7a51321dff53e479bc6d11f3785e1c65c07f0 /gnu/packages/patches/dico-libtool-deterministic.patch | |
parent | a3d6e1f432ad5f9cde8bee670b28646e05c4cb19 (diff) | |
parent | 79f9d5d5dc97e492e0583e039a2699aa17f4eb11 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/patches/dico-libtool-deterministic.patch')
-rw-r--r-- | gnu/packages/patches/dico-libtool-deterministic.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gnu/packages/patches/dico-libtool-deterministic.patch b/gnu/packages/patches/dico-libtool-deterministic.patch deleted file mode 100644 index 957fc79786..0000000000 --- a/gnu/packages/patches/dico-libtool-deterministic.patch +++ /dev/null @@ -1,15 +0,0 @@ -Dico 2.2 uses an old Libtool (2.2.7a) that did not sort the output -of 'find', thereby leading to non-deterministic file name ordering -in the arguments passed to 'ar rcu' for libdico.a & co. - ---- dico-2.2/build-aux/ltmain.sh 1970-01-01 01:00:00.000000000 +0100 -+++ dico-2.2/build-aux/ltmain.sh 2015-11-25 09:39:30.826169050 +0100 -@@ -2926,7 +2926,7 @@ func_extract_archives () - func_extract_an_archive "$my_xdir" "$my_xabs" - ;; - esac -- my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` -+ my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` - done - - func_extract_archives_result="$my_oldobjs" |