From eda1df5df296f2e67f67f59433225cb5160f4f4c Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Sat, 13 Sep 2008 16:48:08 +0100 Subject: [PATCH] Avoid processing tgt-vhdl/Makefile.in twice It's processed once by AC_OUTPUT in configure.in and then again by AC_OUTPUT in tgt-vhdl/configure.in. This is a bug from when I first started on the VHDL target, and was basing it on the tgt-vvp code. The call to configure in the tgt-vhdl directory is not actually necessary either, since it doesn't do any checks not performed elsewhere, so that should proably be removed later. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 1a975b173..5443f69ec 100644 --- a/configure.in +++ b/configure.in @@ -124,4 +124,4 @@ AX_CPP_IDENT # XXX disable tgt-fpga for the moment AC_CONFIG_SUBDIRS(vvp vpi tgt-stub tgt-null tgt-vvp tgt-vhdl libveriuser cadpli) -AC_OUTPUT(Makefile ivlpp/Makefile driver/Makefile driver-vpi/Makefile tgt-null/Makefile tgt-verilog/Makefile tgt-pal/Makefile tgt-vhdl/Makefile) +AC_OUTPUT(Makefile ivlpp/Makefile driver/Makefile driver-vpi/Makefile tgt-null/Makefile tgt-verilog/Makefile tgt-pal/Makefile)