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 /singlecall.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 'singlecall.mk')
-rw-r--r-- | singlecall.mk | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/singlecall.mk b/singlecall.mk index 1e429f4..1068186 100644 --- a/singlecall.mk +++ b/singlecall.mk @@ -1,10 +1,5 @@ all: $(BIN) -install: contacts - mkdir -p -- "$(DESTDIR)$(PREFIX)/lib" +install: $(BIN) mkdir -p -- "$(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 + cp -- $(BIN) "$(DESTDIR)$(PREFIX)/bin/" |