]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* acinclude.m4: Don't add -P on initial nm test.
authorVladimir Serbinenko <phcoder@gmail.com>
Thu, 14 Nov 2013 21:37:20 +0000 (22:37 +0100)
committerVladimir Serbinenko <phcoder@gmail.com>
Thu, 14 Nov 2013 21:37:20 +0000 (22:37 +0100)
Note: even though this patch postdates Andrey's it bears 14 Nov as
date due to timezone difference.

ChangeLog
acinclude.m4

index 2b70f0d57b7fabc8545f554c99ec9d3a75478572..a94fd8820f6a7878e4c7bc92284ca592c52edd35 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-11-14  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * acinclude.m4: Don't add -P on initial nm test.
+
+       Note: even though this patch postdates Andrey's it bears 14 Nov as
+       date due to timezone difference.
+
 2013-11-15  Andrey Borzenkov <arvidjaar@gmail.com>
 
        * grub-core/Makefile.core.def (signature_test): Add missing
index 218976f60dbd0cb641f3d6c4fce9f0a0aa9d7e07..1c1433786f0404c4cf6c785b97264377a055d08e 100644 (file)
@@ -142,7 +142,7 @@ AC_CACHE_VAL(grub_cv_prog_nm_works,
 nm_works_tmp_dir="$(mktemp -d "./confXXXXXX")"
 AC_LANG_CONFTEST([AC_LANG_PROGRAM([[]], [[]])])
 $TARGET_CC $TARGET_CFLAGS -c conftest.c -o "$nm_works_tmp_dir/ef"
-if $TARGET_NM -P "$nm_works_tmp_dir/ef" > /dev/null; then
+if $TARGET_NM "$nm_works_tmp_dir/ef" > /dev/null; then
    grub_cv_prog_nm_works=yes
 else
    grub_cv_prog_nm_minus_p=no