diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-25 19:14:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-25 19:14:42 +0200 |
commit | c1b82c1353a4813ed8ddd1cfe95404131acb0609 (patch) | |
tree | 2b10c504b6308916015425616a91a7e49a95c09a /libcontacts/Makefile | |
parent | Fix bugs (diff) | |
download | dotfiles-c1b82c1353a4813ed8ddd1cfe95404131acb0609.tar.gz dotfiles-c1b82c1353a4813ed8ddd1cfe95404131acb0609.tar.bz2 dotfiles-c1b82c1353a4813ed8ddd1cfe95404131acb0609.tar.xz |
Fix bugs
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libcontacts/Makefile')
-rw-r--r-- | libcontacts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcontacts/Makefile b/libcontacts/Makefile index f73de4d..1f246e3 100644 --- a/libcontacts/Makefile +++ b/libcontacts/Makefile @@ -8,7 +8,7 @@ install: test ! -e ~/.config/contacts && \ ln -sf -- ~/.dotfiles/libcontacts/contacts ~/.config/contacts; \ else \ - test "$(readlink ~/.config/contacts)" = ~/.dotfiles/libcontacts/contacts; \ + test "$$(readlink -- ~/.config/contacts)" = ~/.dotfiles/libcontacts/contacts; \ fi uninstall: |