summaryrefslogtreecommitdiff
path: root/firefox-5.0-asciidel.patch
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@redhat.com>2011-06-24 14:01:53 -0700
committerChristopher Aillon <caillon@redhat.com>2011-06-24 14:01:53 -0700
commit703a267d1c3183873cd3ac023bce4e93d0db7482 (patch)
tree690fb181602e518412d7297e7570d287e143e946 /firefox-5.0-asciidel.patch
parentReversed mozbz#642795 - Remove support for registering and finding system XUL... (diff)
downloadlibrewolf-fedora-ff-703a267d1c3183873cd3ac023bce4e93d0db7482.tar.gz
librewolf-fedora-ff-703a267d1c3183873cd3ac023bce4e93d0db7482.tar.bz2
librewolf-fedora-ff-703a267d1c3183873cd3ac023bce4e93d0db7482.zip
Fix an issue with a stray glyph in the window title bar.
The ASCII DEL (127) character was appended to the end of every title bar. This patch fixes the issue by properly assigning PRE_RELEASE_SUFFIX to an empty string rather than a literal "". The literal double-quotes were getting defined to the preprocessor as -DPRE_RELEASE_SUFFIX="""" and after preprocessing, browser.xul had ASCII DEL (127) characters instead of the empty string.
Diffstat (limited to 'firefox-5.0-asciidel.patch')
-rw-r--r--firefox-5.0-asciidel.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/firefox-5.0-asciidel.patch b/firefox-5.0-asciidel.patch
new file mode 100644
index 0000000..1916cb3
--- /dev/null
+++ b/firefox-5.0-asciidel.patch
@@ -0,0 +1,15 @@
+Patch from: Bill Nottingham <notting@redhat.com>
+
+diff -up mozilla-release/browser/base/Makefile.in.fu mozilla-release/browser/base/Makefile.in
+--- mozilla-release/browser/base/Makefile.in.fu 2011-06-24 16:50:23.802042086 -0400
++++ mozilla-release/browser/base/Makefile.in 2011-06-24 16:50:42.324042096 -0400
+@@ -62,7 +62,7 @@ EXTRA_JS_MODULES = \
+
+ include $(topsrcdir)/config/rules.mk
+
+-PRE_RELEASE_SUFFIX := ""
++PRE_RELEASE_SUFFIX :=
+
+ DEFINES += \
+ -DMOZ_APP_VERSION=$(MOZ_APP_VERSION) \
+
bgstack15