mplayer-1.0rc3-disable-install-strip.patch 723 B

123456789101112131415161718192021222324
  1. Disable stripping on installation
  2. Using the -s option of install does not work, as it uses the host
  3. strip instead of the cross strip. So, get rid of it, and let Buildroot
  4. handle the stripping.
  5. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  6. ---
  7. configure | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. Index: mplayer-32710/configure
  10. ===================================================================
  11. --- mplayer-32710.orig/configure
  12. +++ mplayer-32710/configure
  13. @@ -2519,7 +2519,7 @@
  14. # Checking for CFLAGS
  15. -_install_strip="-s"
  16. +_install_strip=
  17. if test "$_profile" != "" || test "$_debug" != "" ; then
  18. CFLAGS="-O2 $_march $_mcpu $_pipe $_debug $_profile"
  19. WARNFLAGS="-W -Wall"