]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
bump version, document changes - libdisk fix, autoconf version fixes.
authorNathan Scott <nathans@sgi.com>
Fri, 9 Aug 2002 06:07:41 +0000 (06:07 +0000)
committerNathan Scott <nathans@sgi.com>
Fri, 9 Aug 2002 06:07:41 +0000 (06:07 +0000)
VERSION
configure.in
debian/changelog
doc/CHANGES
include/builddefs.in

diff --git a/VERSION b/VERSION
index 5cafc9fcbbee3b929a9275614716cdce1b24de6b..0fd0459d8ab5a0b7b8dc69e29b5330f82fe9ef8b 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
 #
 PKG_MAJOR=2
 PKG_MINOR=2
-PKG_REVISION=0
+PKG_REVISION=1
 PKG_BUILD=0
index 937946a6dfa016c3dfa13584c46c035d0217eb88..3f72ebf5a97e703efe97a8ce3104115db3b213a4 100644 (file)
@@ -43,6 +43,22 @@ pkg_builder=`id -u -n`@`hostname`
 test -z "$PACKAGE_BUILDER" || pkg_builder="$PACKAGE_BUILDER"
 AC_SUBST(pkg_builder)
 
+dnl standard or user-specified install paths
+pkg_bin_dir=${bindir}
+pkg_lib_dir=${libdir}
+pkg_inc_dir=${includedir}/xfs
+pkg_man_dir=${mandir}
+pkg_doc_dir=${datadir}/doc/${pkg_name}
+pkg_sbin_dir=${sbindir}
+pkg_devlib_dir=${libexecdir}
+AC_SUBST(pkg_bin_dir)
+AC_SUBST(pkg_lib_dir)
+AC_SUBST(pkg_inc_dir)
+AC_SUBST(pkg_man_dir)
+AC_SUBST(pkg_doc_dir)
+AC_SUBST(pkg_sbin_dir)
+AC_SUBST(pkg_devlib_dir)
+
 
 dnl output header with cpp defs HAVE_*, etc
 AC_CONFIG_HEADER(include/platform_defs.h)
index 32fe9abd061db688be3cd43f528a8294f3d33fc5..85cfca34c717a51af979b1e967c2aeacd6f6defc 100644 (file)
@@ -1,7 +1,8 @@
-xfsprogs (2.2.0-1) unstable; urgency=low
+xfsprogs (2.2.1-1) unstable; urgency=low
 
   * New upstream release
   * Default mkfs.xfs blocksize is now 4096 bytes, not getpagesize(2)
+  * Fix to allow install process to work for newer autoconf versions
 
  -- Nathan Scott <nathans@debian.org>  Wed,  7 Aug 2002 11:37:23 +1000
 
index 6951681c9462a65f1bb26f0a7468268828227b9c..9b1b6042b12006c73a3a2cd89d3009a5ee35978e 100644 (file)
@@ -1,3 +1,9 @@
+xfsprogs-2.2.1 (09 August 2002)
+       - Fix buglet in libdisk get_driver_block_major() routine which
+         would result in incorrect majors being returned for not-found
+         drivers.
+       - Fix problem in install process with newer autoconf versions.
+
 xfsprogs-2.2.0 (08 August 2002)
        - mkfs.xfs defaults to a blocksize of 4096 bytes, and no longer
          uses getpagesize(2) to dynamically configure the default size.
index 1c6263ce216b2ddead078fb49aacdb96ee014712..59718e8fec04bfa4a8fcd5f8e064c3bf7f768839 100644 (file)
@@ -52,13 +52,13 @@ PKG_RELEASE = @pkg_release@
 PKG_VERSION = @pkg_version@
 PKG_DISTRIBUTION = @pkg_distribution@
 PKG_BUILDER = @pkg_builder@
-PKG_BIN_DIR = @bindir@
-PKG_SBIN_DIR = @sbindir@
-PKG_LIB_DIR = @libdir@
-PKG_DEVLIB_DIR = @libexecdir@
-PKG_INC_DIR = @includedir@/xfs
-PKG_MAN_DIR = @mandir@
-PKG_DOC_DIR = @datadir@/doc/@pkg_name@
+PKG_BIN_DIR = @pkg_bin_dir@
+PKG_LIB_DIR = @pkg_lib_dir@
+PKG_INC_DIR = @pkg_inc_dir@
+PKG_MAN_DIR = @pkg_man_dir@
+PKG_DOC_DIR = @pkg_doc_dir@
+PKG_SBIN_DIR = @pkg_sbin_dir@
+PKG_DEVLIB_DIR = @pkg_devlib_dir@
 
 CC     = @cc@
 LD     = @ld@