2
1

libhid-0.2.16-fix-configure-typo.patch 730 B

123456789101112131415161718192021222324
  1. [PATCH] fix typo in configure
  2. Somehow a newline character has gotten inserted in the middle of the
  3. LDFLAGS assignment, breaking the build.
  4. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
  5. ---
  6. configure | 3 +--
  7. 1 file changed, 1 insertion(+), 2 deletions(-)
  8. Index: libhid-0.2.16/configure
  9. ===================================================================
  10. --- libhid-0.2.16.orig/configure
  11. +++ libhid-0.2.16/configure
  12. @@ -23050,8 +23050,7 @@ echo "$as_me: doxygen disabled by config
  13. CPPFLAGS=$(echo $CPPFLAGS)
  14. CFLAGS=$(echo $OS_CFLAGS $LIBUSB_CFLAGS $CFLAGS)
  15. CXXFLAGS=$(echo $CXXFLAGS)
  16. - LDFLAGS=$(echo $OS_LDFLAGS $LIBUSB_LIBS
  17. - $LDFLAGS)
  18. + LDFLAGS=$(echo $OS_LDFLAGS $LIBUSB_LIBS $LDFLAGS)