summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Batard <pete@akeo.ie>2012-06-05 17:29:46 +0100
committerPete Batard <pete@akeo.ie>2012-06-05 17:29:46 +0100
commit0c089c7a1466cfad947bb8ddad69d52de76fb698 (patch)
treecc0a6b904bd49c4a440588c1a45028dd701f91b1
parentcf6e68acb116c63f4a8c9d30ee4f2757e8c2e12a (diff)
downloadlibusbx-0c089c7a1466cfad947bb8ddad69d52de76fb698.tar.gz
Autotools: Fix versioning regression in configure.ac
* Because of missing [], "LIBUSB_MICROLIBUSB_RC" was being displayed in lieu of version number * Regression introduced with c9d41fe5f0324d969f758f42843e1fd05859f438
-rw-r--r--configure.ac2
-rw-r--r--libusb/version_nano.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 96978a8..b305f68 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@ LU_DEFINE_VERSION_ATOM([LIBUSB_MINOR])
LU_DEFINE_VERSION_ATOM([LIBUSB_MICRO])
LU_DEFINE_VERSION_RC_ATOM([LIBUSB_RC])
-AC_INIT([libusbx],[LIBUSB_MAJOR.LIBUSB_MINOR.LIBUSB_MICROLIBUSB_RC],[libusbx-devel@lists.sourceforge.net],[libusbx],[http://www.libusbx.org/])
+AC_INIT([libusbx],[LIBUSB_MAJOR[.]LIBUSB_MINOR[.]LIBUSB_MICRO[]LIBUSB_RC],[libusbx-devel@lists.sourceforge.net],[libusbx],[http://www.libusbx.org/])
# Library versioning
# These numbers should be tweaked on every release. Read carefully:
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index 264a5e3..f56fbab 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 10519
+#define LIBUSB_NANO 10520