nsis-uninstall.patch 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. From 67c1d7d66d99494102832e12059a84fa439c88e0 Mon Sep 17 00:00:00 2001
  2. From: Sukhbir Singh <sukhbir@torproject.org>
  3. Date: Tue, 12 Jun 2018 21:58:24 -0400
  4. Subject: [PATCH] Bug 26205: Don't build the uninstaller for Windows during
  5. Firefox compilation
  6. diff --git a/browser/Makefile.in b/browser/Makefile.in
  7. index 2eb9e708f68e..0c9442183942 100644
  8. --- a/browser/Makefile.in
  9. +++ b/browser/Makefile.in
  10. @@ -6,10 +6,6 @@ include $(topsrcdir)/config/rules.mk
  11. ifdef MAKENSISU
  12. -# For Windows build the uninstaller during the application build since the
  13. -# uninstaller is included with the application for mar file generation.
  14. -libs::
  15. - $(MAKE) -C installer/windows uninstaller
  16. ifdef MOZ_MAINTENANCE_SERVICE
  17. $(MAKE) -C installer/windows maintenanceservice_installer
  18. endif
  19. diff --git a/browser/installer/Makefile.in b/browser/installer/Makefile.in
  20. index 0325f0ffab9a..a5a9488623a3 100644
  21. --- a/browser/installer/Makefile.in
  22. +++ b/browser/installer/Makefile.in
  23. @@ -98,10 +98,6 @@ ifdef NECKO_WIFI
  24. DEFINES += -DNECKO_WIFI
  25. endif
  26. -ifdef MAKENSISU
  27. -DEFINES += -DHAVE_MAKENSISU=1
  28. -endif
  29. -
  30. ifdef MOZ_DEFAULT_BROWSER_AGENT
  31. DEFINES += -DMOZ_DEFAULT_BROWSER_AGENT=1
  32. endif
  33. --
  34. 2.27.0