[tor-commits] [tor-browser/tor-browser-24.1.1esr-1] Make --enable-strip work again

mikeperry at torproject.org mikeperry at torproject.org
Mon Dec 2 09:46:34 UTC 2013


commit a4fc2ee70f1511dfc258990f680b67bdae1fff78
Author: Georg Koppen <g.koppen at jondos.de>
Date:   Tue Nov 12 10:50:31 2013 +0100

    Make --enable-strip work again
    
    Patch from https://bugzilla.mozilla.org/show_bug.cgi?id=841373
---
 config/rules.mk        |    6 +++---
 js/src/config/rules.mk |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/config/rules.mk b/config/rules.mk
index f64edab..174af2c 100644
--- a/config/rules.mk
+++ b/config/rules.mk
@@ -883,7 +883,7 @@ else # !WINNT || GNU_CC
 endif # WINNT && !GNU_CC
 
 ifdef ENABLE_STRIP
-	$(STRIP) $@
+	$(STRIP) $(STRIP_FLAGS) $@
 endif
 ifdef MOZ_POST_PROGRAM_COMMAND
 	$(MOZ_POST_PROGRAM_COMMAND) $@
@@ -937,7 +937,7 @@ else
 endif # WINNT && !GNU_CC
 
 ifdef ENABLE_STRIP
-	$(STRIP) $@
+	$(STRIP) $(STRIP_FLAGS) $@
 endif
 ifdef MOZ_POST_PROGRAM_COMMAND
 	$(MOZ_POST_PROGRAM_COMMAND) $@
@@ -1051,7 +1051,7 @@ endif	# WINNT && !GCC
 	@$(RM) foodummyfilefoo $(DELETE_AFTER_LINK)
 	chmod +x $@
 ifdef ENABLE_STRIP
-	$(STRIP) $@
+	$(STRIP) $(STRIP_FLAGS) $@
 endif
 ifdef MOZ_POST_DSO_LIB_COMMAND
 	$(MOZ_POST_DSO_LIB_COMMAND) $@
diff --git a/js/src/config/rules.mk b/js/src/config/rules.mk
index f64edab..174af2c 100644
--- a/js/src/config/rules.mk
+++ b/js/src/config/rules.mk
@@ -883,7 +883,7 @@ else # !WINNT || GNU_CC
 endif # WINNT && !GNU_CC
 
 ifdef ENABLE_STRIP
-	$(STRIP) $@
+	$(STRIP) $(STRIP_FLAGS) $@
 endif
 ifdef MOZ_POST_PROGRAM_COMMAND
 	$(MOZ_POST_PROGRAM_COMMAND) $@
@@ -937,7 +937,7 @@ else
 endif # WINNT && !GNU_CC
 
 ifdef ENABLE_STRIP
-	$(STRIP) $@
+	$(STRIP) $(STRIP_FLAGS) $@
 endif
 ifdef MOZ_POST_PROGRAM_COMMAND
 	$(MOZ_POST_PROGRAM_COMMAND) $@
@@ -1051,7 +1051,7 @@ endif	# WINNT && !GCC
 	@$(RM) foodummyfilefoo $(DELETE_AFTER_LINK)
 	chmod +x $@
 ifdef ENABLE_STRIP
-	$(STRIP) $@
+	$(STRIP) $(STRIP_FLAGS) $@
 endif
 ifdef MOZ_POST_DSO_LIB_COMMAND
 	$(MOZ_POST_DSO_LIB_COMMAND) $@





More information about the tor-commits mailing list