diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2014-10-02 12:30:20 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2014-10-02 12:30:20 +0200 |
commit | 8d0798ec718504ff3b66adcba4e2f8d271d42acc (patch) | |
tree | f48937bded9087d7eda2b7499e1bf60d32b60279 | |
parent | 5a82f59941e6b6a35cbd02e3e42b2b0c32d1a0c9 (diff) | |
download | nx-libs-8d0798ec718504ff3b66adcba4e2f8d271d42acc.tar.gz nx-libs-8d0798ec718504ff3b66adcba4e2f8d271d42acc.tar.bz2 nx-libs-8d0798ec718504ff3b66adcba4e2f8d271d42acc.zip |
fix symlink creation
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 6e45185e4..1f02c900d 100755 --- a/debian/rules +++ b/debian/rules @@ -43,8 +43,8 @@ override_dh_auto_build: mkdir -p etc/ ln -s ../debian/keystrokes.cfg etc/keystrokes.cfg ln -s debian/rgb - ln -sf VERSION.x2goagent debian/VERSION - ln -sf nxcomp/VERSION debian/VERSION + ln -sf debian/VERSION VERSION.x2goagent + ln -sf debian/VERSION nxcomp/VERSION # let's prep the libnx-x11.postinst script with the value of the build systems's DEB_BUILD_MULTIARCH variable sed debian/libnx-x11.postinst.in -e 's/#DEB_BUILD_MULTIARCH#/$(DEB_BUILD_MULTIARCH)/' > debian/libnx-x11.postinst |