projects
/
gph-math
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19e9cbd
)
fixed copying of library links in install target
master
author
John Tsiombikas
<nuclear@mutantstargoat.com>
Thu, 7 Jan 2016 17:19:36 +0000
(19:19 +0200)
committer
John Tsiombikas
<nuclear@mutantstargoat.com>
Thu, 7 Jan 2016 17:19:36 +0000
(19:19 +0200)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
cfbb34d
..
f1d2d83
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-74,8
+74,8
@@
install: $(alib) $(solib)
cp $(solib) $(DESTDIR)$(PREFIX)/lib/$(solib)
[ -n "$(soname)" ] && \
rm -f $(DESTDIR)$(PREFIX)/lib/$(soname) $(DESTDIR)$(PREFIX)/lib/$(ldname) && \
- cp $(soname) $(DESTDIR)$(PREFIX)/lib/$(soname) && \
- cp $(ldname) $(DESTDIR)$(PREFIX)/lib/$(ldname) || true
+ cp -a $(soname) $(DESTDIR)$(PREFIX)/lib/$(soname) && \
+ cp -a $(ldname) $(DESTDIR)$(PREFIX)/lib/$(ldname) || true
.PHONY: uninstall
uninstall: