aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-12-14 13:25:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-12-14 13:25:27 +0200
commit976ad10b40e3d3cee44c2997f5732ecdf4c92e11 (patch)
tree7296358f50947e332408cc2404a48671afd8f1a5
parentfa9ba2accbf43404d0e776ebe92348df5ba5c7e8 (diff)
Correct header path in install target
-rw-r--r--dist/libxsde/xsde/makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/libxsde/xsde/makefile b/dist/libxsde/xsde/makefile
index e586977..66a8b4f 100644
--- a/dist/libxsde/xsde/makefile
+++ b/dist/libxsde/xsde/makefile
@@ -646,11 +646,11 @@ install_include := $(install_prefix)/include
install: libxsde.a
../../install-sh -d -m 755 $(install_lib)
../../install-sh -m 644 libxsde.a $(install_lib)/libxsde.a
- ../../install-sh -d -m 755 $(install_include)
- find . -type d | sed -e 's%^\.%$(install_include)%' \
+ ../../install-sh -d -m 755 $(install_include)/xsde
+ find . -type d | sed -e 's%^\.%$(install_include)/xsde%' \
| xargs -n 1 ../../install-sh -d -m 755
find . -name '*.h' -o -name '*.hxx' -o -name '*.ixx' -o -name '*.txx' \
-| sed -e 's%^\./\(.*\)%\1 $(install_include)/\1%' \
+| sed -e 's%^\./\(.*\)%\1 $(install_include)/xsde/\1%' \
| xargs -n 2 ../../install-sh -m 644
# Clean.