Allows me to cross build an armhf package from amd64.
Signed-off-by: Ian Campbell <[email protected]>
---
scripts/package/builddeb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index f46e4dd..c22ab79 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -155,11 +155,11 @@ if grep -q '^CONFIG_MODULES=y' $KCONFIG_CONFIG ; then
for module in $(find lib/modules/ -name *.ko); do
mkdir -p $(dirname
$dbg_dir/usr/lib/debug/$module)
# only keep debug symbols in the debug file
- objcopy --only-keep-debug $module
$dbg_dir/usr/lib/debug/$module
+ ${CROSS_COMPILE}objcopy --only-keep-debug
$module $dbg_dir/usr/lib/debug/$module
# strip original module from debug symbols
- objcopy --strip-debug $module
+ ${CROSS_COMPILE}objcopy --strip-debug $module
# then add a link to those
- objcopy
--add-gnu-debuglink=$dbg_dir/usr/lib/debug/$module $module
+ ${CROSS_COMPILE}objcopy
--add-gnu-debuglink=$dbg_dir/usr/lib/debug/$module $module
done
)
fi
--
1.9.0
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive:
https://lists.debian.org/[email protected]