0001-fix-syntax-issue-while-checking-ldflags.patch 892 B

1234567891011121314151617181920212223242526272829303132333435
  1. From 3af12d8d0f749751e487955c24260049e7a8eec6 Mon Sep 17 00:00:00 2001
  2. From: Kamel Bouhara <kamel.bouhara@bootlin.com>
  3. Date: Wed, 13 May 2020 16:58:22 +0200
  4. Subject: [PATCH] fix syntax issue while checking ldflags
  5. Signed-off-by: Kamel Bouhara <kamel.bouhara@bootlin.com>
  6. ---
  7. configure | 4 ++--
  8. 1 file changed, 2 insertions(+), 2 deletions(-)
  9. diff --git a/configure b/configure
  10. index def5883..2d783f6 100755
  11. --- a/configure
  12. +++ b/configure
  13. @@ -17574,7 +17574,7 @@ libmysqlclient_paths="none /usr/lib/mysql /usr/lib64/mysql"
  14. for path in $libmysqlclient_paths; do
  15. -if test x"path" != xnone; then
  16. +if test x"$path" != xnone; then
  17. save_LDFLAGS="$LDFLAGS"
  18. LDFLAGS="$LDFLAGS -L$path"
  19. fi
  20. @@ -17753,7 +17753,7 @@ if test x"$libmysqlclient_found" = xyes; then
  21. break;
  22. fi
  23. -if test x"path" != xnone; then
  24. +if test x"$path" != xnone; then
  25. LDFLAGS="$save_LDFLAGS"
  26. fi
  27. --
  28. 2.26.2