You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.6 KiB
36 lines
1.6 KiB
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
# |
|
# Filename: package/.../pam/hostcc.patch |
|
# Copyright (C) 2006 The OpenSDE Project |
|
# |
|
# More information can be found in the files COPYING and README. |
|
# |
|
# This patch file is dual-licensed. It is available under the license the |
|
# patched project is licensed under, as long as it is an OpenSource license |
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|
# of the GNU General Public License as published by the Free Software |
|
# Foundation; either version 2 of the License, or (at your option) any later |
|
# version. |
|
# --- SDE-COPYRIGHT-NOTE-END --- |
|
|
|
use HOST_CC instead of CC when building the helpers to generate doc/ |
|
|
|
--- ./doc/specs/Makefile.in.orig 2006-09-10 16:20:54.000000000 +0200 |
|
+++ ./doc/specs/Makefile.in 2006-09-10 16:31:27.000000000 +0200 |
|
@@ -62,12 +62,12 @@ |
|
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) |
|
depcomp = $(SHELL) $(top_srcdir)/depcomp |
|
am__depfiles_maybe = depfiles |
|
-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ |
|
+COMPILE = $(HOST_CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ |
|
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) |
|
-LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ |
|
+LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(HOST_CC) $(DEFS) \ |
|
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ |
|
$(AM_CFLAGS) $(CFLAGS) |
|
-CCLD = $(CC) |
|
+CCLD = $(HOST_CC) |
|
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ |
|
$(AM_LDFLAGS) $(LDFLAGS) -o $@ |
|
YACCCOMPILE = $(YACC) $(YFLAGS) $(AM_YFLAGS)
|
|
|