gcj only needs the internal libffi copy to build and links statically against it. so there is no point in installing the libffi headers and libraries from the gcc tree. discussed with espie@ kurt@ and upstream libffi maintainer ok espie@ kurt@
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
$OpenBSD: patch-libffi_Makefile_in,v 1.2 2009/10/10 22:48:29 jasper Exp $
|
|
|
|
Don't install libffi headers, gcj links statically with libffi.
|
|
|
|
--- libffi/Makefile.in.orig Mon May 19 16:28:07 2008
|
|
+++ libffi/Makefile.in Fri Oct 9 18:16:33 2009
|
|
@@ -428,7 +428,8 @@ nodist_libffi_la_SOURCES = $(am__append_1) $(am__appen
|
|
libffi_convenience_la_SOURCES = $(libffi_la_SOURCES)
|
|
nodist_libffi_convenience_la_SOURCES = $(nodist_libffi_la_SOURCES)
|
|
AM_CFLAGS = -Wall -g -fexceptions
|
|
-libffi_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version`
|
|
+include $(top_srcdir)/../libversions
|
|
+libffi_la_LDFLAGS = $(LIBffi_LTVERSION)
|
|
AM_CPPFLAGS = -I. -I$(top_srcdir)/include -Iinclude -I$(top_srcdir)/src
|
|
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
|
all: fficonfig.h
|
|
@@ -1203,9 +1204,9 @@ installdirs-am:
|
|
for dir in "$(DESTDIR)$(toolexeclibdir)"; do \
|
|
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
|
done
|
|
-install: install-recursive
|
|
-install-exec: install-exec-recursive
|
|
-install-data: install-data-recursive
|
|
+install:
|
|
+install-exec:
|
|
+install-data:
|
|
uninstall: uninstall-recursive
|
|
|
|
install-am: all-am
|