diff options
Diffstat (limited to 'security/gnome-keyring/files/patch-configure')
-rw-r--r-- | security/gnome-keyring/files/patch-configure | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/security/gnome-keyring/files/patch-configure b/security/gnome-keyring/files/patch-configure new file mode 100644 index 000000000..9aff6d9eb --- /dev/null +++ b/security/gnome-keyring/files/patch-configure @@ -0,0 +1,29 @@ +--- configure.orig 2009-02-24 21:18:47.000000000 +0100 ++++ configure 2009-02-24 21:19:24.000000000 +0100 +@@ -18069,7 +18069,7 @@ + + { echo "$as_me:$LINENO: checking build test tools, unit tests, and -Werror" >&5 + echo $ECHO_N "checking build test tools, unit tests, and -Werror... $ECHO_C" >&6; } +-if test "$enable_tests" == "yes"; then ++if test "$enable_tests" = "yes"; then + + cat >>confdefs.h <<_ACEOF + #define WITH_TESTS 1 +@@ -18085,7 +18085,7 @@ + tests_status="no" + fi + +- if test "$enable_tests" == "yes"; then ++ if test "$enable_tests" = "yes"; then + WITH_TESTS_TRUE= + WITH_TESTS_FALSE='#' + else +@@ -18100,7 +18100,7 @@ + fi + + +-if test "$enable_coverage" == "yes"; then ++if test "$enable_coverage" = "yes"; then + CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage" + LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage" + fi |