Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2012-11-07 15:56:33 +0000
committerSilenio Quarti2012-11-07 15:56:33 +0000
commitbe2b91cd6a59d03b70080c7a901c2ef961ccdda3 (patch)
tree87130c9c9a568b5d1e6168313fd30edafcd5c847
parent001f791fb525485866ffc4b7c6107c4f7de265e4 (diff)
downloadrt.equinox.framework-be2b91cd6a59d03b70080c7a901c2ef961ccdda3.tar.gz
rt.equinox.framework-be2b91cd6a59d03b70080c7a901c2ef961ccdda3.tar.xz
rt.equinox.framework-be2b91cd6a59d03b70080c7a901c2ef961ccdda3.zip
environment vars cannot have dots
-rw-r--r--bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c b/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c
index b6c63a0b1..51ed70a9f 100644
--- a/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c
+++ b/bundles/org.eclipse.equinox.executable/library/gtk/eclipseGtkInit.c
@@ -101,7 +101,7 @@ int loadGtk() {
void *gdkLib = NULL, *gtkLib = NULL, *objLib = NULL, *pixLib = NULL, *x11Lib = NULL;
- if (getenv("org.eclipse.swt.gtk3")) {
+ if (getenv("SWT_GTK3")) {
gdkLib = dlopen(GDK3_LIB, DLFLAGS);
gtkLib = dlopen(GTK3_LIB, DLFLAGS);
}

Back to the top