Loading
libtar: fix cross-compilation by removing hardcoded strip from install
libtar/Makefile.in hardcodes `INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s`, which runs bare `strip` during `make install`. This fails in cross builds where only the target-prefixed strip is available in PATH. Nix's fixup phase already handles stripping with the correct tool, so the flag is redundant even for native builds.