summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalle Vahlman <kalle.vahlman@movial.com>2011-12-19 06:35:33 +0000
committerKalle Vahlman <kalle.vahlman@movial.com>2011-12-19 06:35:33 +0000
commit29b49663fc83d6cc5a5bb14dc54e68d3f3cb5055 (patch)
treee06c7b8154609cd589418b846a034eb3c2b6966c
parentc330aca4af24d54de59bfe9dc8e7e83de2ff20f3 (diff)
Symbolic link sources should not have DESTDIR in them
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index dd3a8b5..778e185 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -21,8 +21,8 @@ install:
mkdir -p $(DESTDIR)/usr/lib
find . -name "*.so*"
cp *.so* $(DESTDIR)/usr/lib/
- ln -s $(DESTDIR)/usr/lib/libblt_hw.so.1.0 $(DESTDIR)/usr/lib/libblt_hw.so.1
- ln -s $(DESTDIR)/usr/lib/libblt_hw.so.1 $(DESTDIR)/usr/lib/libblt_hw.so
+ ln -s /usr/lib/libblt_hw.so.1.0 $(DESTDIR)/usr/lib/libblt_hw.so.1
+ ln -s /usr/lib/libblt_hw.so.1 $(DESTDIR)/usr/lib/libblt_hw.so
mkdir -p $(DESTDIR)/usr/include
cp $(IDIR)/*.h $(DESTDIR)/usr/include