diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-06 03:32:03 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-06 03:32:03 +0200 |
commit | c15d84e7716f31584535143b93acef565d8f3730 (patch) | |
tree | ee0b8c95aafe97fa4d8304ae59541e028780aeb5 /multicall-symlinks.mk | |
parent | Fix filtering based on block status (diff) | |
download | contacts-c15d84e7716f31584535143b93acef565d8f3730.tar.gz contacts-c15d84e7716f31584535143b93acef565d8f3730.tar.bz2 contacts-c15d84e7716f31584535143b93acef565d8f3730.tar.xz |
Swap install rule in multicall-symlinks.mk amd singlecall.mk so it is as intended
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'multicall-symlinks.mk')
-rw-r--r-- | multicall-symlinks.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/multicall-symlinks.mk b/multicall-symlinks.mk index 314cecd..2cd918c 100644 --- a/multicall-symlinks.mk +++ b/multicall-symlinks.mk @@ -1,5 +1,10 @@ all: contacts -install: $(BIN) +install: contacts + mkdir -p -- "$(DESTDIR)$(PREFIX)/lib" mkdir -p -- "$(DESTDIR)$(PREFIX)/bin" - cp -- $(BIN) "$(DESTDIR)$(PREFIX)/bin/" + cp -- contacts "$(DESTDIR)$(PREFIX)/lib/" + cd -- "$(DESTDIR)$(PREFIX)/bin/" &&\ + for f in $(BIN); do\ + ln -s -- ../lib/contacts "$$f" || exit 1;\ + done |