Dfu-programmer cannot cannot find libusb. This patch fixes that. diff --git a/src/dfu-device.h b/src/dfu-device.h index bbdfa99..31af0e8 100644 --- a/src/dfu-device.h +++ b/src/dfu-device.h @@ -6,7 +6,7 @@ #endif #include #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif diff --git a/src/main.c b/src/main.c index ef2aa16..dcc3636 100644 --- a/src/main.c +++ b/src/main.c @@ -24,7 +24,7 @@ #include #include #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif diff --git a/src/dfu.c b/src/dfu.c index 7dbcc57..952e896 100644 --- a/src/dfu.c +++ b/src/dfu.c @@ -27,7 +27,7 @@ #include #include #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif diff --git a/src/dfu.h b/src/dfu.h index 2a159e8..63510f2 100644 --- a/src/dfu.h +++ b/src/dfu.h @@ -25,7 +25,7 @@ # include #endif #ifdef HAVE_LIBUSB_1_0 -#include +#include #else #include #endif logtreecommitdiff
AgeCommit message (Expand)Author
2021-02-22packages: 'package-field-location' handles 'search-path' returning #f....Fixes <https://bugs.gnu.org/46390>. Reported by zimoun <zimon.toutoune@gmail.com>. This is similar to the fix in d10474c38d58bdc676e64336769dc2e00cdfa8ed. * guix/packages.scm (package-field-location): Handle FILE not in %LOAD-PATH. * tests/guix-lint.sh: Add test. Ludovic Courtès
2020-09-28tests: Simplify shell exit status negation;...* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi' Eric Bavier
2020-08-23lint: formatting: Gracefully handle relative file names....Fixes <https://bugs.gnu.org/42543>. Reported by Jack Hill <jackhill@jackhill.us>. * guix/lint.scm (check-formatting): Always return a list (previously we would return #f when 'search-path' returns #f). Check whether LOCATION's file is a relative file name. Return a warning if not. * tests/guix-lint.sh: Add test. Ludovic Courtès