patch-source_common_Makefile_in 557 B

1234567891011121314151617
  1. $OpenBSD: patch-source_common_Makefile_in,v 1.10 2017/05/24 15:44:42 ajacoutot Exp $
  2. Don't strip static libraries.
  3. Index: source/common/Makefile.in
  4. --- source/common/Makefile.in.orig
  5. +++ source/common/Makefile.in
  6. @@ -149,7 +149,7 @@ install-local: install-headers install-library
  7. install-library: all-local
  8. $(MKINSTALLDIRS) $(DESTDIR)$(libdir)
  9. ifneq ($(ENABLE_STATIC),)
  10. - $(INSTALL-L) $(TARGET) $(DESTDIR)$(libdir)
  11. + $(INSTALL_DATA) $(TARGET) $(DESTDIR)$(libdir)
  12. endif
  13. ifneq ($(ENABLE_SHARED),)
  14. $(INSTALL-L) $(FINAL_SO_TARGET) $(DESTDIR)$(libdir)