summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-12-10 15:15:12 +0100
committerSven Eden <yamakuzure@gmx.net>2017-12-10 15:15:12 +0100
commite158518c16e6cd178e444fc0ced46038c3eac9bf (patch)
treed028a15c0456c6b737896a3f4c7507f5e63f9155 /tools
parente2976634b8c7b1907bce27acb2682c0972a862b5 (diff)
Fix and fortify cap-list generation and inlcude symlinking for gentoo build system.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/meson-symlink_headers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/meson-symlink_headers.sh b/tools/meson-symlink_headers.sh
index e5ca647d1..32388d06f 100755
--- a/tools/meson-symlink_headers.sh
+++ b/tools/meson-symlink_headers.sh
@@ -4,6 +4,6 @@ INCDIR="$1"
shift 1
while [ $# -gt 0 ] ; do
- ln -vfs "systemd/$1" "${INCDIR}/elogind/$1"
+ ln -vfs "systemd/$1" "${DESTDIR:-}/${INCDIR}/elogind/$1"
shift 1
done