diff options
Diffstat (limited to 'recipes/gnupg/gnupg-1.4.2.2/30_nm_always_check.patch')
-rw-r--r-- | recipes/gnupg/gnupg-1.4.2.2/30_nm_always_check.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/recipes/gnupg/gnupg-1.4.2.2/30_nm_always_check.patch b/recipes/gnupg/gnupg-1.4.2.2/30_nm_always_check.patch deleted file mode 100644 index 914f1475b7..0000000000 --- a/recipes/gnupg/gnupg-1.4.2.2/30_nm_always_check.patch +++ /dev/null @@ -1,21 +0,0 @@ -Originally the test for _'s on symbols was not done when cross-compiling and -it was assumed that the _'s were appended. The test does in fact work since -it simply compiles a file and then run's nm on it. So patch this to enable. -Without this x86 targets fail during linking since the assembler code has -the _'s appended when it shouldn't. - ---- gnupg-1.4.2.2/acinclude.m4 2006/09/11 22:11:23 1.1 -+++ gnupg-1.4.2.2/acinclude.m4 2006/09/11 22:17:25 -@@ -673,11 +673,7 @@ - ac_cv_sys_symbol_underscore=yes - ;; - *) -- if test "$cross_compiling" = yes; then -- ac_cv_sys_symbol_underscore=yes -- else -- tmp_do_check="yes" -- fi -+ tmp_do_check="yes" - ;; - esac - |