Fix PREFIX_BINARY for NixOS users

This commit is contained in:
jD91mZM2 2019-06-11 17:00:06 +02:00
parent b087af4105
commit a95d366047
No known key found for this signature in database
GPG key ID: 3055D54729A72666
2 changed files with 28 additions and 6 deletions

View file

@ -92,6 +92,8 @@ $(PREFIX)/gcc-install: $(PREFIX)/gcc-install.tar.gz
rm -rf "$@.partial" "$@"
mkdir -p "$@.partial"
tar --extract --file "$<" --directory "$@.partial" --strip-components=1
[ -n "$$NIX_INTERPRETER" ] && find "$@.partial" -executable -type f -exec \
patchelf --set-interpreter "$$NIX_INTERPRETER" "{}" \;
touch "$@.partial"
mv "$@.partial" "$@"