diff options
| author | Nathan Hjelm <hjelmn@me.com> | 2013-07-27 13:57:39 -0600 |
|---|---|---|
| committer | hjelmn <Nathan Hjelm hjelmn@cs.unm.edu> | 2013-07-30 09:10:19 -0600 |
| commit | 872ff1704b79034af14cd09ac335bd97fe9be1ea (patch) | |
| tree | 12eb7be2d28393e13cc550bd46fc6431e9843b45 | |
| parent | 83021abc20102e45f0eab53a3bea92279259182a (diff) | |
| download | android_external_libusbx-872ff1704b79034af14cd09ac335bd97fe9be1ea.tar.gz android_external_libusbx-872ff1704b79034af14cd09ac335bd97fe9be1ea.tar.bz2 android_external_libusbx-872ff1704b79034af14cd09ac335bd97fe9be1ea.zip | |
Silence automake 1.14 warning
The warning is:
libusb/Makefile.am:57: warning: source file 'os/threads_windows.c' is in a subdirectory,
libusb/Makefile.am:57: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled. For now, the corresponding output
automake: object file(s) will be placed in the top-level directory. However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
Fixed by setting the subdir-objects option.
Closes #125.
| -rw-r--r-- | libusb/Makefile.am | 2 | ||||
| -rw-r--r-- | libusb/version_nano.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libusb/Makefile.am b/libusb/Makefile.am index 7f9c1f9..9779dbb 100644 --- a/libusb/Makefile.am +++ b/libusb/Makefile.am @@ -1,5 +1,7 @@ all: libusb-1.0.la libusb-1.0.dll +AUTOMAKE_OPTIONS = subdir-objects + lib_LTLIBRARIES = libusb-1.0.la POSIX_POLL_SRC = os/poll_posix.c diff --git a/libusb/version_nano.h b/libusb/version_nano.h index 34e26ff..39ad7e3 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 10777 +#define LIBUSB_NANO 10778 |
