From: Pete Batard Date: Tue, 5 Jun 2012 16:29:46 +0000 (+0100) Subject: Autotools: Fix versioning regression in configure.ac X-Git-Tag: upstream/1.0.21~632 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c089c7a1466cfad947bb8ddad69d52de76fb698;p=platform%2Fupstream%2Flibusb.git 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 --- 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