From fc0256b600469d55d4feb37c97f9c1bca022b474 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Wed, 30 Aug 2006 13:04:41 +0000 Subject: * configure.in: Substitute with_cross_host in depending files. * configure: Regenerate. * lib/Makefile.in: Add with_cross_host to allow more granular checks. Set installation directories accordingly. * lib/ddk/Makefile.in: Ditto. * lib/directx/Makefile.in: Ditto. --- winsup/w32api/lib/Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'winsup/w32api/lib/Makefile.in') diff --git a/winsup/w32api/lib/Makefile.in b/winsup/w32api/lib/Makefile.in index b678d2b1f..1127fb227 100644 --- a/winsup/w32api/lib/Makefile.in +++ b/winsup/w32api/lib/Makefile.in @@ -21,6 +21,7 @@ subdirs := ddk directx host_alias = @host@ build_alias = @build@ target_alias = @target@ +with_cross_host = @with_cross_host@ prefix = @prefix@ includedir:=@includedir@ @@ -43,9 +44,14 @@ ifneq (,$(findstring cygwin,$(target_alias))) inst_includedir:=$(tooldir)/include/w32api inst_libdir:=$(tooldir)/lib/w32api else +ifneq (,$with_cross_host) +inst_includedir:=$(tooldir)/include/w32api +inst_libdir:=$(tooldir)/lib +else inst_includedir:=$(includedir) inst_libdir:=$(libdir) endif +endif INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -- cgit v1.2.3