summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild8
1 files changed, 8 insertions, 0 deletions
diff --git a/build b/build
index 4be17b9..6cb4c16 100755
--- a/build
+++ b/build
@@ -92,6 +92,14 @@ install: build
echo "/usr/lib/$(OPK_HOST_ARCH)/$${target}" \
>>"binutils-$${target}.data/etc/ld.so.conf.d/bfd_$(OPK_HOST_ARCH)_$${target}"; \
done
+ # Move documentation into binutils-doc data directory.
+ mkdir -p 'binutils-doc.data/usr'
+ for target in $$(cat ../targets); do \
+ if [ ! -d 'binutils-doc.data/usr/share' ]; then \
+ mv "binutils-$${target}.data/usr/share" 'binutils-doc.data/usr' || \
+ exit 1; \
+ fi; \
+ done
# Post-process and install everything.
for target in $$(cat ../targets); do \
oh-fixperms -d "binutils-$${target}.data" && \