aboutsummaryrefslogtreecommitdiff
path: root/debian/libnx-xinerama1.postinst.in
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-09-22 15:09:27 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-09-22 15:09:27 +0200
commit449eae1be9ee948872fd35f3a6629b714ceec496 (patch)
treee0026f069a112b4837644576835c0b916c9880d4 /debian/libnx-xinerama1.postinst.in
parent021050ff7f858770a505f42916724394fd48b3d0 (diff)
downloadnx-libs-449eae1be9ee948872fd35f3a6629b714ceec496.tar.gz
nx-libs-449eae1be9ee948872fd35f3a6629b714ceec496.tar.bz2
nx-libs-449eae1be9ee948872fd35f3a6629b714ceec496.zip
Revert "debian/libnx-xinerama1.*: fix faulty logic when creating symlinks."
This reverts commit 5a9f8294ce2f9c4265c5359323d7ad157974d016. Conflicts (resolved by Mike Gabriel): debian/changelog
Diffstat (limited to 'debian/libnx-xinerama1.postinst.in')
-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
;;