aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-07-12 12:21:34 +0200
committerMattias Andrée <maandree@kth.se>2024-07-12 12:21:34 +0200
commit32eee9d649364f31ade08618fbfde7dffff84a52 (patch)
tree8064d9b26c1793238ca23dce8482b4c599252e2c
parentStart gpg-agent, so that it doesn't try the terminal only, and fail when stdin is something else (diff)
downloaddotfiles-32eee9d649364f31ade08618fbfde7dffff84a52.tar.gz
dotfiles-32eee9d649364f31ade08618fbfde7dffff84a52.tar.bz2
dotfiles-32eee9d649364f31ade08618fbfde7dffff84a52.tar.xz
Fix building of xkbdbind
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--xorg-server/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-server/Makefile b/xorg-server/Makefile
index a4b433b..07d0105 100644
--- a/xorg-server/Makefile
+++ b/xorg-server/Makefile
@@ -23,7 +23,7 @@ install:
ln -sf -- ~/.dotfiles/xorg-server/setkeys ~/.local/bin/setkeys
if test -d xkbdbind; then \
if test -d xkbdbind/.git; then \
- if ! git log '--format=format:%H' | grep '^$(XKBDBIND_GIT_HASH)$$' >/dev/null; then \
+ if ! (cd -- xkbdbind && git log '--format=format:%H') | grep '^$(XKBDBIND_GIT_HASH)$$' >/dev/null; then \
(cd -- xkbdbind && git pull) || :; \
fi; \
fi; \