summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-11-10 11:53:01 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-11-10 11:53:01 +0000
commit7bb764087750f33ddcdfbac20944e3903665510c (patch)
treef55b7d58a325eda5a7890914b4e5b9395ac19302
parent2078ad6352b4149a4ca1388f4557affd56ac6901 (diff)
downloads6-portable-utils-7bb764087750f33ddcdfbac20944e3903665510c.tar.xz
- configure fix
- better make strip - rc for 2.0.5.4
-rw-r--r--INSTALL2
-rw-r--r--Makefile13
-rwxr-xr-xconfigure2
-rw-r--r--doc/index.html4
-rw-r--r--doc/upgrade.html6
-rw-r--r--package/info2
6 files changed, 17 insertions, 12 deletions
diff --git a/INSTALL b/INSTALL
index 8951682..b6fe232 100644
--- a/INSTALL
+++ b/INSTALL
@@ -6,7 +6,7 @@ Build Instructions
- A POSIX-compliant C development environment
- GNU make version 3.81 or later
- - skalibs version 2.3.8.0 or later: http://skarnet.org/software/skalibs/
+ - skalibs version 2.3.8.2 or later: http://skarnet.org/software/skalibs/
This software will run on any operating system that implements
POSIX.1-2008, available at:
diff --git a/Makefile b/Makefile
index c3b4a4a..f5b8657 100644
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,7 @@ clean:
@exec rm -f $(ALL_LIBS) $(ALL_BINS) $(wildcard src/*/*.o src/*/*.lo) $(EXTRA_TARGETS)
distclean: clean
- @exec rm -f config.mak src/include/${package}/config.h
+ @exec rm -f config.mak src/include/$(package)/config.h
tgz: distclean
@. package/info && \
@@ -71,11 +71,11 @@ tgz: distclean
exec rm -rf /tmp/$$package-$$version
strip: $(ALL_LIBS) $(ALL_BINS)
-ifneq ($(strip $(ALL_LIBS)),)
- exec ${STRIP} -x -R .note -R .comment -R .note.GNU-stack $(ALL_LIBS)
+ifneq ($(strip $(STATIC_LIBS)),)
+ exec $(STRIP) -x -R .note -R .comment -R .note.GNU-stack $(STATIC_LIBS)
endif
-ifneq ($(strip $(ALL_BINS)),)
- exec ${STRIP} -R .note -R .comment -R .note.GNU-stack $(ALL_BINS)
+ifneq ($(strip $(ALL_BINS)$(SHARED_LIBS)),)
+ exec $(STRIP) -R .note -R .comment -R .note.GNU-stack $(ALL_BINS) $(SHARED_LIBS)
endif
install: install-dynlib install-libexec install-bin install-sbin install-lib install-include
@@ -111,8 +111,7 @@ $(DESTDIR)$(dynlibdir)/lib%.so: lib%.so.xyzzy
$(INSTALL) -D -m 755 $< $@.$(version) && \
$(INSTALL) -l $(@F).$(version) $@.$(version_m) && \
$(INSTALL) -l $(@F).$(version_m) $@.$(version_M) && \
- $(INSTALL) -l $(@F).$(version_M) $@.$(version_l) && \
- exec $(INSTALL) -l $(@F).$(version_l) $@
+ exec $(INSTALL) -l $(@F).$(version_M) $@
$(DESTDIR)$(libexecdir)/% $(DESTDIR)$(bindir)/% $(DESTDIR)$(sbindir)/%: % package/modes
exec $(INSTALL) -D -m 600 $< $@
diff --git a/configure b/configure
index ab6a070..1f9b16e 100755
--- a/configure
+++ b/configure
@@ -205,7 +205,7 @@ fi
# Expand installation directories
stripdir prefix
-for i in exec_prefix dynlibdir libexecdir bindir sbindir libdir includedir datadir sysdeps sproot skalibs ; do
+for i in exec_prefix dynlibdir libexecdir bindir sbindir libdir includedir datadir sysdeps sproot ; do
eval tmp=\${$i}
eval $i=$tmp
stripdir $i
diff --git a/doc/index.html b/doc/index.html
index 8e6dc0c..a76e80d 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -61,7 +61,7 @@ the package is now used to host specific utilities such as
<li> A POSIX-compliant system with a standard C development environment </li>
<li> GNU make, version 3.81 or later </li>
<li> <a href="http://skarnet.org/software/skalibs/">skalibs</a> version
-2.3.8.0 or later. It's a build-time requirement. It's also a run-time
+2.3.8.2 or later. It's a build-time requirement. It's also a run-time
requirement if you link against the shared version of the skalibs
library. </li>
</ul>
@@ -77,7 +77,7 @@ library. </li>
<ul>
<li> The current released version of s6-portable-utils is
-<a href="s6-portable-utils-2.0.5.3.tar.gz">2.0.5.3</a>. </li>
+<a href="s6-portable-utils-2.0.5.4.tar.gz">2.0.5.4</a>. </li>
<li> Alternatively, you can checkout a copy of the s6-portable-utils git repository:
<pre> git clone git://git.skarnet.org/s6-portable-utils </pre> </li>
</ul>
diff --git a/doc/upgrade.html b/doc/upgrade.html
index ccedfce..2c1448c 100644
--- a/doc/upgrade.html
+++ b/doc/upgrade.html
@@ -18,6 +18,12 @@
<h1> What has changed in s6-portable-utils </h1>
+<h2> in 2.0.5.4 </h2>
+
+<ul>
+ <li> skalibs dependency bumped to 2.3.8.2. </li>
+</ul>
+
<h2> in 2.0.5.3 </h2>
<ul>
diff --git a/package/info b/package/info
index 40f871f..ed52176 100644
--- a/package/info
+++ b/package/info
@@ -1,4 +1,4 @@
package=s6-portable-utils
-version=2.0.5.3
+version=2.0.5.4
category=admin
package_macro_name=S6_PORTABLE_UTILS