From 6d6d140745512f548724d3782549b53c49dc8158 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Mon, 23 Jul 2001 01:00:35 +0000 Subject: [PATCH] install static libs and libtool archives into /usr/lib, not /lib. --- VERSION | 2 +- debian/changelog | 6 ++++++ doc/CHANGES | 4 ++++ include/builddefs.in | 9 +++++---- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index e70cad31b..b762ba84e 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=1 PKG_MINOR=3 -PKG_REVISION=1 +PKG_REVISION=2 PKG_BUILD=0 diff --git a/debian/changelog b/debian/changelog index 1aaa0a7be..4200347b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xfsprogs (1.3.2-0) unstable; urgency=low + + * New upstream release + + -- Nathan Scott Mon, 23 Jul 2001 10:27:37 +1000 + xfsprogs (1.3.1-0) unstable; urgency=low * Reworked package slightly so that its not Debian native diff --git a/doc/CHANGES b/doc/CHANGES index 516a8d6fa..fb4e2d2de 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,7 @@ +xfsprogs-1.3.2 (23 July 2001) + - install static libs and libtool archives into /usr/lib + - shared libraries are unchanged, however + xfsprogs-1.3.1 (15 Jul 2001) - updated xfs_types.h file from the kernel changes needed for an xfsdump fix. diff --git a/include/builddefs.in b/include/builddefs.in index 69a0e55e2..b20e9ec57 100644 --- a/include/builddefs.in +++ b/include/builddefs.in @@ -143,9 +143,10 @@ endif ifeq ($(ENABLE_SHARED),yes) INSTALL_LTLIB_DEV = \ cd $(TOPDIR)/$(LIBNAME)/.libs; \ + ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \ + ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR); \ + ../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_LIB_DIR)/$(LIBNAME).la ; \ ../$(INSTALL) -m 755 -d $(PKG_SLIB_DIR); \ - ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_SLIB_DIR); \ - ../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_SLIB_DIR)/$(LIBNAME).la ; \ ../$(INSTALL) -T so_base $(LIBNAME).lai $(PKG_SLIB_DIR) else INSTALL_LTLIB_DEV = $(INSTALL_LTLIB_STATIC) @@ -153,8 +154,8 @@ endif INSTALL_LTLIB_STATIC = \ cd $(TOPDIR)/$(LIBNAME)/.libs; \ - ../$(INSTALL) -m 755 -d $(PKG_SLIB_DIR); \ - ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_SLIB_DIR) + ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \ + ../$(INSTALL) -m 644 -T old_lib $(LIBNAME).lai $(PKG_LIB_DIR) INSTALL_MAN = \ @for d in $(MAN_PAGES); do \ -- 2.47.2