Package: src:bash
User: [email protected]
Usertags: cross
During the build process, debian/rules calls strip command directly.
This will cause trouble for people doing cross build because host
architecture's strip command may don't know how to handle the
resulting binary.
Something like the following will do the trick:
ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
STRIP=$(DEB_BUILD_GNU_TYPE)-strip
else
STRIP=strip
fi
Thanks,
Eleanor Chen
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]