aboutsummaryrefslogtreecommitdiff
path: root/core/linux-headers
diff options
context:
space:
mode:
Diffstat (limited to 'core/linux-headers')
-rwxr-xr-xcore/linux-headers/build6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/linux-headers/build b/core/linux-headers/build
index 5eae502f..269a45f1 100755
--- a/core/linux-headers/build
+++ b/core/linux-headers/build
@@ -1,3 +1,7 @@
#!/bin/sh -e
-make headers_install INSTALL_HDR_PATH="$1/usr"
+make headers
+
+# This is used to install headers without an
+# rsync dependency.
+find usr/include -name '*.h' -exec install -Dm644 "{}" "$1/{}" \;