The branch, build-baikal has been updated via 4473c3ab9c4ea4ece35fcc1da1608179404d9fba (commit) from ec72377982314efccbc8597a65ec364b8b75d251 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: debian/changelog | 3 +++ debian/post-build-nx.sh | 6 ++++++ 2 files changed, 9 insertions(+) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 012c7bd..35df3c1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,9 @@ nx-libs (2:3.5.0.11-0) UNRELEASED; urgency=low * Use ,,$(MAKE) -C'' in main Makefile for calling Makefiles in subdirectories, make build stanza work for nx-libs-full and nx-libs-lite. + * Do not install libXinerama directly into /usr/lib/nx. Recommended method is + installing to /usr/lib/nx/Xinerama, so that you can enable/disable usage of + the Xinerama extension. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Tue, 07 Feb 2012 13:48:19 +0100 diff --git a/debian/post-build-nx.sh b/debian/post-build-nx.sh index 0724e19..9a6143c 100755 --- a/debian/post-build-nx.sh +++ b/debian/post-build-nx.sh @@ -13,11 +13,17 @@ cp -aL nx-X11/exports/include/* nx-X11/.build-exports/include find nx-X11/exports/lib/ | egrep "^.*\.so$" | while read libpath; do libfile=$(basename $libpath) libdir=$(dirname $libpath) + mkdir -p ${libdir//exports/.build-exports} cp -L $libpath ${libdir//exports/.build-exports} + find $libdir/$libfile.* | while read symlink; do ln -s $libfile ${libdir//exports/.build-exports}/$(basename $symlink) done + + # do not install libXinerama into default path... + rm -f ${libdir//exports/.build-exports}/lib/libXinerama* + done exit 0 hooks/post-receive -- nx-libs.git (NX (redistributed)) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "nx-libs.git" (NX (redistributed)).