vp-build/templates/libusb/configure_sh_test_invalid.diff
Juan RP 79a8601bb8 libusb: add patch for broken sh test in configure. Bump revision.
--HG--
extra : convert_revision : 58d840b94819beb4806ecc27feecac1cae28d6f4
2009-04-27 00:11:35 +02:00

14 lines
406 B
Diff

Incorrect comparision operator that doesn't work in strict POSIX shells.
--- configure.orig 2009-04-27 00:07:12.146716716 +0200
+++ configure 2009-04-27 00:07:31.506853126 +0200
@@ -11255,7 +11255,7 @@ $as_echo "$as_me: error: unsupported ope
{ (exit 1); exit 1; }; }
esac
- if test "x$backend" == "xlinux"; then
+ if test "x$backend" = "xlinux"; then
OS_LINUX_TRUE=
OS_LINUX_FALSE='#'
else