aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-09-22 15:02:22 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-09-28 07:53:07 +0200
commit899f865cfb42d579bd853c8c5b6458dc088f977c (patch)
tree0b812772aa05a7e1e0fa3c8254d07b9b5d709104
parent9b126b8526e78af89dc13f5d45dd7e04c427abb4 (diff)
downloadnx-libs-899f865cfb42d579bd853c8c5b6458dc088f977c.tar.gz
nx-libs-899f865cfb42d579bd853c8c5b6458dc088f977c.tar.bz2
nx-libs-899f865cfb42d579bd853c8c5b6458dc088f977c.zip
Revert "debian/libnx-xinerama1.*: fix faulty logic when creating symlinks."
This reverts commit b77b26f4acc3932c29a1e0788e22d24e29e091d5.
-rwxr-xr-xdebian/libnx-xinerama1.postinst.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/libnx-xinerama1.postinst.in b/debian/libnx-xinerama1.postinst.in
index 6d9ba36ef..c3706038c 100755
--- a/debian/libnx-xinerama1.postinst.in
+++ b/debian/libnx-xinerama1.postinst.in
@@ -28,13 +28,13 @@ case "$1" in
# Already existent files are not removed.
# Users will need to explicitly remove them and (re-) configure this package.
- if ! test -e $libdir/libX11.so.6; then
+ if test -e $libdir/libX11.so.6; then
ln -s $libdir/libX11.so.6 /usr/lib/nx/X11/Xinerama/libNX_X11.so.6
fi
- if ! test -e $libdir/libXext.so.6; then
+ if test -e $libdir/libXext.so.6; then
ln -s $libdir/libXext.so.6 /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6
fi
- if ! test -e $libdir/libNX_Xinerama.so.1; then
+ if test -e $libdir/libNX_Xinerama.so.1; then
ln -s $libdir/libNX_Xinerama.so.1 /usr/lib/nx/X11/Xinerama/libXinerama.so.1
fi
;;