This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository nx-libs. from 0b9fce2 Makefile.nx-libs: fix faulty path to nxproxy.1 man page new 804584c Don't fail if removing *.a files fails due to the files being non-present. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 1 + nx-libs.spec | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository nx-libs. commit 804584cb18349efb48ca7501af4b43b7641011ad Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Jan 29 12:40:22 2015 +0100 Don't fail if removing *.a files fails due to the files being non-present. --- debian/changelog | 1 + nx-libs.spec | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 61fe48f..9281720 100644 --- a/debian/changelog +++ b/debian/changelog @@ -83,6 +83,7 @@ nx-libs (2:3.5.0.29-0x2go2) UNRELEASED; urgency=medium + Add Obsoletes: fields to all shared libs for marking the non-versioned library package (names) as obsolete. + Don't depend on nx-libs base package with fixed version. + + Don't fail if removing *.a files fails due to the files being non-present. * debian/roll-tarball.sh: + Install etc/ files into etc/ subfolder (rgb, nxagent.keyboard, diff --git a/nx-libs.spec b/nx-libs.spec index a143050..77e7ad5 100644 --- a/nx-libs.spec +++ b/nx-libs.spec @@ -740,8 +740,8 @@ make install \ INSTALL_FILE="install -pm0644" \ INSTALL_PROGRAM="install -pm0755" -# Remove static libs -rm %{buildroot}%{_libdir}/*.a +# Remove static libs (they don't exist on SLES, so using -f here) +rm -f %{buildroot}%{_libdir}/*.a # Make sure x2goagent is linked relative and on 64-bit mkdir -p %{buildroot}%{_libdir}/x2go/bin -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/nx-libs.git