0001-configure.ac-fix-with-rtlsdr-option.patch 804 B

1234567891011121314151617181920212223242526272829
  1. From 45a8c51a20a518ed78c5ea1829a307c045f737be Mon Sep 17 00:00:00 2001
  2. From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  3. Date: Fri, 27 Mar 2020 22:19:42 +0100
  4. Subject: [PATCH] configure.ac: fix --with-rtlsdr option
  5. Add missing ',' to allow the user to explicitly disable or enable rtlsdr
  6. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  7. [Upstream status: https://github.com/nhorman/rng-tools/pull/88]
  8. ---
  9. configure.ac | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/configure.ac b/configure.ac
  12. index ba796f8..1f55052 100644
  13. --- a/configure.ac
  14. +++ b/configure.ac
  15. @@ -43,7 +43,7 @@ AC_ARG_WITH([pkcs11],
  16. AC_ARG_WITH([rtlsdr],
  17. AS_HELP_STRING([--without-rtlsdr],
  18. - [Disable rtlsdr support. ])
  19. + [Disable rtlsdr support. ]),
  20. [],
  21. [with_rtlsdr=no]
  22. )
  23. --
  24. 2.25.1