Patrick Williams | 0ca19cc | 2021-08-16 14:03:13 -0500 | [diff] [blame^] | 1 | From 99ab34278a6ebec134267412b4f619f43e278dea Mon Sep 17 00:00:00 2001 |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Fri, 3 Aug 2018 09:44:00 -0700 |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 4 | Subject: [PATCH] intl: Emit no lines in bison generated files |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 5 | |
| 6 | Improve reproducibility: |
| 7 | Do not put any #line preprocessor commands in bison generated files. |
| 8 | These lines contain absolute paths containing file locations on |
| 9 | the host build machine. |
| 10 | |
| 11 | Upstream-Status: Pending |
| 12 | |
| 13 | Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> |
| 14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 15 | --- |
| 16 | intl/Makefile | 2 +- |
| 17 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 18 | |
| 19 | diff --git a/intl/Makefile b/intl/Makefile |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 20 | index 93478d87e8..b27a7935eb 100644 |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 21 | --- a/intl/Makefile |
| 22 | +++ b/intl/Makefile |
| 23 | @@ -155,7 +155,7 @@ $(objpfx)tst-gettext6.out: $(objpfx)tst-gettext.out |
| 24 | |
| 25 | CPPFLAGS += -D'LOCALEDIR="$(localedir)"' \ |
| 26 | -D'LOCALE_ALIAS_PATH="$(localedir)"' |
| 27 | -BISONFLAGS = --yacc --name-prefix=__gettext --output |
| 28 | +BISONFLAGS = --yacc --no-lines --name-prefix=__gettext --output |
| 29 | |
| 30 | $(inst_localedir)/locale.alias: locale.alias $(+force) |
| 31 | $(do-install) |