0001-install-does-not-build.patch 1.1 KB

1234567891011121314151617181920212223
  1. Makefile: do not force the release build on install
  2. If we did build any of the other targets, and are just interested
  3. in those and not the release one, we still want to use the 'install'
  4. rule, but not build (and install) the release libraries.
  5. So, remove the dependency on the 'release' target from the 'install'
  6. rule.
  7. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
  8. diff -durN am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea.orig/pru_sw/app_loader/interface/Makefile am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea/pru_sw/app_loader/interface/Makefile
  9. --- am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea.orig/pru_sw/app_loader/interface/Makefile 2014-08-18 00:24:36.000000000 +0200
  10. +++ am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea/pru_sw/app_loader/interface/Makefile 2014-10-12 11:39:17.144682697 +0200
  11. @@ -38,7 +38,7 @@
  12. all: debug release sodebug sorelease
  13. -install: release
  14. +install:
  15. install -m 0755 -d $(DESTDIR)$(PREFIX)/lib
  16. install -m 0755 -d $(DESTDIR)$(PREFIX)/include
  17. install -m 0644 $(LIBDIR)/* $(DESTDIR)$(PREFIX)/lib