Bernhard Rosenkraenzer wrote:
> binutils 2.9.5.0.22 got a bit stricter about returning errors vs.
> warnings.
> The usual fix is to replace
> 
> strip $RPM_BUILD_ROOT/usr/bin/*
> 
> with
> 
> strip $RPM_BUILD_ROOT/usr/bin/* || :

This is fine if you enjoy modifying lots of spec files.

I just did this:
  mv /usr/bin/strip /usr/bin/strip.real
  cat > /usr/bin/strip <<'EOF'
  #! /bin/sh
  /usr/bin/strip.real $*
  exit 0
  EOF

--
Andrew E. Mileski - Software Engineer
REBEL.COM  http://www.rebel.com/

-- 
To unsubscribe:
mail -s unsubscribe [EMAIL PROTECTED] < /dev/null

Reply via email to