aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 15:53:13 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 15:53:13 +0100
commit4b2f90939c4fcae0bb24ca7e96bfa2ca6c82e5da (patch)
tree5d958250ae2827f01247dfe539f5d1bc4a4d8307 /Makefile
parentMerge pull request #17 from carlocab/install-name (diff)
downloadlibkeccak-4b2f90939c4fcae0bb24ca7e96bfa2ca6c82e5da.tar.gz
libkeccak-4b2f90939c4fcae0bb24ca7e96bfa2ca6c82e5da.tar.bz2
libkeccak-4b2f90939c4fcae0bb24ca7e96bfa2ca6c82e5da.tar.xz
Move operand for install_name_tool from macro in macos.mk to usage in Makefile1.3.1.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 10926cb..4818e5b 100644
--- a/Makefile
+++ b/Makefile
@@ -177,7 +177,7 @@ run-benchmark: benchmark benchfile
install: libkeccak.$(LIBEXT) libkeccak.a
mkdir -p -- "$(DESTDIR)$(PREFIX)/lib"
cp -- libkeccak.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/libkeccak.$(LIBMINOREXT)"
- $(FIX_INSTALL_NAME)
+ $(FIX_INSTALL_NAME) "$(DESTDIR)$(PREFIX)/lib/libkeccak.$(LIBEXT)"
ln -sf -- libkeccak.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libkeccak.$(LIBMAJOREXT)"
ln -sf -- libkeccak.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libkeccak.$(LIBEXT)"
cp -- libkeccak.a "$(DESTDIR)$(PREFIX)/lib/libkeccak.a"