summaryrefslogtreecommitdiffstats
path: root/rules/gnuplot.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2005-10-11 15:55:04 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2005-10-11 15:55:04 +0000
commit2889ad091c658d640d16b8a1fe68e93bf30534a8 (patch)
treedf6aa26270a1672c509967b6c2f3fa571ad379bf /rules/gnuplot.make
parentf10b2a3e845c030a39d171b18b7c46a5f9fddcac (diff)
downloadptxdist-2889ad091c658d640d16b8a1fe68e93bf30534a8.tar.gz
ptxdist-2889ad091c658d640d16b8a1fe68e93bf30534a8.tar.xz
* rules/gnuplot.make rules/nfs-utils.make
rules/kaffe.make rules/bind.make someone forgot the "PTXCONF_" prefix... replaced 'ifdef foobar' by 'ifdef PTXCONF_foobar' git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.7-trunk@3225 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/gnuplot.make')
-rw-r--r--rules/gnuplot.make9
1 files changed, 1 insertions, 8 deletions
diff --git a/rules/gnuplot.make b/rules/gnuplot.make
index 916dbad70..0668e2deb 100644
--- a/rules/gnuplot.make
+++ b/rules/gnuplot.make
@@ -122,7 +122,7 @@ GNUPLOT_AUTOCONF += --with-png
else
GNUPLOT_AUTOCONF += --without-png
endif
-ifdef GNUPLOT_GD
+ifdef PTXCONF_GNUPLOT_GD
GNUPLOT_AUTOCONF += --with-gd
else
GNUPLOT_AUTOCONF += --without-gd
@@ -161,13 +161,6 @@ gnuplot_compile_deps = $(STATEDIR)/gnuplot.prepare
$(STATEDIR)/gnuplot.compile: $(gnuplot_compile_deps)
@$(call targetinfo, $@)
- # This has to be built with host compiler!!
- # FIXME: uggly workaround for now...
- #cd $(GNUPLOT_DIR)/src && make bf_test CC=$(HOSTCC) CFLAGS='-O2' LDFLAGS=''
- #rm -f $(GNUPLOT_DIR)/src/*.o
-
- # We only make the binary, as IT tries to start target stuff on the host
- # otherwhise
cd $(GNUPLOT_DIR)/src && $(GNUPLOT_ENV) $(GNUPLOT_PATH) make gnuplot
$(call touch, $@)