Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2010-02-08 21:14:12 +0000
committerAndrew Niefer2010-02-08 21:14:12 +0000
commitae7d0cf14ee4946fb96d9bd36f1b96d2f5ad6a1d (patch)
treec5f30d86afb876ae580a8cada51c3f169eaab5c6 /bundles
parent1ecbc229c00e90221e9c8dba308393d7ddf59430 (diff)
downloadrt.equinox.framework-ae7d0cf14ee4946fb96d9bd36f1b96d2f5ad6a1d.tar.gz
rt.equinox.framework-ae7d0cf14ee4946fb96d9bd36f1b96d2f5ad6a1d.tar.xz
rt.equinox.framework-ae7d0cf14ee4946fb96d9bd36f1b96d2f5ad6a1d.zip
bug 302097 - respect user CC variable
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/gtk/make_linux.mak2
-rw-r--r--bundles/org.eclipse.equinox.executable/library/motif/make_linux.mak2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/gtk/make_linux.mak b/bundles/org.eclipse.equinox.executable/library/gtk/make_linux.mak
index b276cf814..a040cd7e9 100644
--- a/bundles/org.eclipse.equinox.executable/library/gtk/make_linux.mak
+++ b/bundles/org.eclipse.equinox.executable/library/gtk/make_linux.mak
@@ -34,7 +34,7 @@ ifeq ($(DEFAULT_JAVA),)
endif
# Define the object modules to be compiled and flags.
-CC=gcc
+CC?=gcc
MAIN_OBJS = eclipseMain.o
COMMON_OBJS = eclipseConfig.o eclipseCommon.o eclipseGtkCommon.o eclipseGtkInit.o
DLL_OBJS = eclipse.o eclipseGtk.o eclipseUtil.o eclipseJNI.o eclipseMozilla.o eclipseShm.o eclipseNix.o
diff --git a/bundles/org.eclipse.equinox.executable/library/motif/make_linux.mak b/bundles/org.eclipse.equinox.executable/library/motif/make_linux.mak
index 25ccd2b92..cd8d51d7f 100644
--- a/bundles/org.eclipse.equinox.executable/library/motif/make_linux.mak
+++ b/bundles/org.eclipse.equinox.executable/library/motif/make_linux.mak
@@ -34,7 +34,7 @@ ifeq ($(DEFAULT_JAVA),)
endif
# Define the object modules to be compiled and flags.
-CC=gcc
+CC?=gcc
MAIN_OBJS = eclipseMain.o
COMMON_OBJS = eclipseConfig.o eclipseCommon.o eclipseMotifCommon.o eclipseMotifInit.o
DLL_OBJS = eclipse.o eclipseMotif.o eclipseUtil.o eclipseJNI.o eclipseMozilla.o eclipseShm.o eclipseNix.o \

Back to the top