aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog4
-rwxr-xr-xdebian/roll-tarballs.sh7
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index be0d47204..cdbec3ff5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -51,6 +51,10 @@ nx-libs (2:3.5.0.29-0x2go2) UNRELEASED; urgency=medium
* Extend 999_nxagent_unbrand-nxagent-brand-x2goagent.full.patch. Allow
separate .keyboard files for x2goagent and nxagent.
+ * debian/roll-tarball.sh:
+ + Install etc/ files into etc/ subfolder (rgb, nxagent.keyboard,
+ x2goagent.keyboard).
+
[ Horst Schirmeier ]
* Update 320_nxagent_configurable-keystrokes.full.patch. Fix a typo that
prevented the /etc/nxagent/keystrokes.cfg file from being parsed. (Fixes:
diff --git a/debian/roll-tarballs.sh b/debian/roll-tarballs.sh
index 92cc7f04d..ae550f8b1 100755
--- a/debian/roll-tarballs.sh
+++ b/debian/roll-tarballs.sh
@@ -87,7 +87,10 @@ if [ "x$MODE" = "xfull" ]; then
cp -v $file doc/applied-patches
echo ${file##*/} >> doc/applied-patches/series
done
- cp -v debian/rgb ./
+ mkdir -p ./etc/
+ cp -v debian/rgb ./etc/
+ cp -v debian/nxagent.keyboard ./etc/
+ cp -v debian/x2goagent.keyboard ./etc/
cp -v debian/VERSION ./VERSION.x2goagent
else
rm -Rf "nxcompshad"*
@@ -101,6 +104,8 @@ else
fi
cp -v debian/VERSION ./nxcomp/VERSION
cp -v debian/COPYING.full+lite COPYING
+cp -v debian/nxagent.keyboard nxagent.keyboard
+cp -v debian/x2goagent.keyboard x2goagent.keyboard
# apply all patches shipped in debian/patches and create a copy of them that we ship with the tarball
if [ -s "doc/applied-patches/series" ]; then