summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--debian/changelog8
-rw-r--r--doc/CHANGES4
-rw-r--r--include/builddefs.in9
4 files changed, 17 insertions, 6 deletions
diff --git a/VERSION b/VERSION
index 5679d10..76416ff 100644
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
#
PKG_MAJOR=1
PKG_MINOR=1
-PKG_REVISION=0
+PKG_REVISION=1
PKG_BUILD=0
diff --git a/debian/changelog b/debian/changelog
index d1aab7f..2bd3712 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,10 @@
-attr (1.1.0-1) unstable; urgency=low
+attr (1.1.1-0) unstable; urgency=low
+
+ * New upstream release
+
+ -- Nathan Scott <nathans@debian.org> Mon, 23 Jul 2001 10:27:37 +1000
+
+attr (1.1.0-0) unstable; urgency=low
* Reworked package slightly so that its not Debian native
* Debian-specific changes now documented in changelog.Debian.gz
diff --git a/doc/CHANGES b/doc/CHANGES
index 451a120..c79db15 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,3 +1,7 @@
+attr-1.1.1 (23 Jul 2001)
+ - install static libs and libtool archives into /usr/lib
+ - shared libraries are unchanged, however
+
attr-1.1.0 (16 Jul 2001)
- reworked Makefiles to use libtool
- rework some of the Debian packaging rules
diff --git a/include/builddefs.in b/include/builddefs.in
index 358fece..912d02e 100644
--- a/include/builddefs.in
+++ b/include/builddefs.in
@@ -136,9 +136,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)
@@ -146,8 +147,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 \