Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > gnu.bash.bug > #16465

[PATCH] Makefile.in: Fix out-of-tree build

From Jessica Clarke <jrtc27@jrtc27.com>
Newsgroups gnu.bash.bug
Subject [PATCH] Makefile.in: Fix out-of-tree build
Date 2020-06-27 21:10 +0100
Message-ID <mailman.532.1593295311.2574.bug-bash@gnu.org> (permalink)
References <20200627201002.38935-1-jrtc27@jrtc27.com>

Show all headers | View raw


y.tab.h is present in the source directory, not generated in the build
directory.
---
 Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 5fcb44b0..ee471583 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -459,7 +459,7 @@ INSTALLED_HEADERS = shell.h bashjmp.h command.h syntax.h general.h error.h \
 		    make_cmd.h subst.h sig.h externs.h builtins.h \
 		    bashtypes.h xmalloc.h config-top.h config-bot.h \
 		    bashintl.h bashansi.h bashjmp.h alias.h hashlib.h \
-		    conftypes.h unwind_prot.h jobs.h siglist.h
+		    conftypes.h unwind_prot.h jobs.h siglist.h y.tab.h
 INSTALLED_BUILTINS_HEADERS = bashgetopt.h common.h getopt.h
 INSTALLED_INCFILES =	 posixstat.h ansi_stdlib.h filecntl.h posixdir.h \
 	memalloc.h stdc.h posixjmp.h posixwait.h posixtime.h systimes.h \
@@ -562,7 +562,7 @@ CREATED_MAKEFILES = Makefile builtins/Makefile doc/Makefile \
 		    examples/loadables/Makefile.inc \
 		    examples/loadables/perl/Makefile support/Makefile \
 		    lib/intl/Makefile po/Makefile po/Makefile.in
-CREATED_HEADERS = signames.h config.h pathnames.h version.h y.tab.h \
+CREATED_HEADERS = signames.h config.h pathnames.h version.h \
 		  ${DEFDIR}/builtext.h
 
 OTHER_DOCS = $(srcdir)/CHANGES $(srcdir)/COMPAT $(srcdir)/NEWS $(srcdir)/POSIX \
-- 
2.20.1

Back to gnu.bash.bug | Previous | Next | Find similar


Thread

[PATCH] Makefile.in: Fix out-of-tree build Jessica Clarke <jrtc27@jrtc27.com> - 2020-06-27 21:10 +0100

csiph-web