This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[basic-improvements] Fix install-target-libffi in Makefile.def [patch]
- From: Diego Novillo <dnovillo at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Thu, 21 Nov 2002 07:51:53 -0500
- Subject: [basic-improvements] Fix install-target-libffi in Makefile.def [patch]
- Organization: Red Hat Canada
The overnight SPEC builder failed with
make: *** No rule to make target `install-target-libffi', needed by `install'. Stop.
Fixed with this patch. OK?
2002-11-21 Diego Novillo <dnovillo@redhat.com>
* Makefile.def: Remove no_install for libffi.
Index: Makefile.def
===================================================================
RCS file: /cvs/gcc/gcc/Makefile.def,v
retrieving revision 1.2.2.6
diff -d -u -p -r1.2.2.6 Makefile.def
--- Makefile.def 19 Nov 2002 06:37:04 -0000 1.2.2.6
+++ Makefile.def 21 Nov 2002 12:49:32 -0000
@@ -82,7 +82,7 @@ target_modules = { module= libgloss; no_
target_modules = { module= libiberty; };
target_modules = { module= gperf; };
target_modules = { module= examples; no_check=true; no_install=true; };
-target_modules = { module= libffi; no_install=true; };
+target_modules = { module= libffi; };
target_modules = { module= libjava; };
target_modules = { module= zlib; };
target_modules = { module= boehm-gc; };