diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-01-31 20:23:42 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-01-31 20:23:42 +0100 |
commit | 343eb8b58389ef2335e79238a088c543f1c602ca (patch) | |
tree | e83c379bcf420a8b57e074837992d0bb34ca32c8 /package/libhid/libhid-0.2.16-fix-configure-typo.patch | |
parent | 7e7a8dc85e92171e93e14eb0323bc518ecada3cc (diff) |
package: add libhid
Based on patch by Johan Sagaert, but with some additional tweaks.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libhid/libhid-0.2.16-fix-configure-typo.patch')
-rw-r--r-- | package/libhid/libhid-0.2.16-fix-configure-typo.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/libhid/libhid-0.2.16-fix-configure-typo.patch b/package/libhid/libhid-0.2.16-fix-configure-typo.patch new file mode 100644 index 000000000..870ecf24a --- /dev/null +++ b/package/libhid/libhid-0.2.16-fix-configure-typo.patch @@ -0,0 +1,24 @@ +[PATCH] fix typo in configure + +Somehow a newline character has gotten inserted in the middle of the +LDFLAGS assignment, breaking the build. + +Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> +--- + configure | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +Index: libhid-0.2.16/configure +=================================================================== +--- libhid-0.2.16.orig/configure ++++ libhid-0.2.16/configure +@@ -23050,8 +23050,7 @@ echo "$as_me: doxygen disabled by config + CPPFLAGS=$(echo $CPPFLAGS) + CFLAGS=$(echo $OS_CFLAGS $LIBUSB_CFLAGS $CFLAGS) + CXXFLAGS=$(echo $CXXFLAGS) +- LDFLAGS=$(echo $OS_LDFLAGS $LIBUSB_LIBS +- $LDFLAGS) ++ LDFLAGS=$(echo $OS_LDFLAGS $LIBUSB_LIBS $LDFLAGS) + + + |