summaryrefslogtreecommitdiffstats
path: root/rules/gnuplot.make
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2006-02-24 17:34:58 +0000
committerSascha Hauer <s.hauer@pengutronix.de>2006-02-24 17:34:58 +0000
commitd008f7b7bc5a55dfb86ae421903af76ee901c530 (patch)
tree4b2679948d102974dd560134acfd1b7012626f6a /rules/gnuplot.make
parent19780c394ec957f9cd4b46ca2fb35c004d647bda (diff)
downloadptxdist-d008f7b7bc5a55dfb86ae421903af76ee901c530.tar.gz
ptxdist-d008f7b7bc5a55dfb86ae421903af76ee901c530.tar.xz
new calling convention for install_* macros. see commit 4759 to Rules.make
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.10-trunk@4760 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/gnuplot.make')
-rw-r--r--rules/gnuplot.make24
1 files changed, 12 insertions, 12 deletions
diff --git a/rules/gnuplot.make b/rules/gnuplot.make
index 037ee16f3..d915b7f0b 100644
--- a/rules/gnuplot.make
+++ b/rules/gnuplot.make
@@ -175,18 +175,18 @@ gnuplot_targetinstall: $(STATEDIR)/gnuplot.targetinstall
$(STATEDIR)/gnuplot.targetinstall: $(gnuplot_targetinstall_deps_default)
@$(call targetinfo, $@)
- @$(call install_init,default)
- @$(call install_fixup,PACKAGE,gnuplot)
- @$(call install_fixup,PRIORITY,optional)
- @$(call install_fixup,VERSION,$(GNUPLOT_VERSION))
- @$(call install_fixup,SECTION,base)
- @$(call install_fixup,AUTHOR,"Robert Schwebel <r.schwebel\@pengutronix.de>")
- @$(call install_fixup,DEPENDS,)
- @$(call install_fixup,DESCRIPTION,missing)
-
- @$(call install_copy, 0, 0, 0755, $(GNUPLOT_DIR)/src/gnuplot, /usr/bin/gnuplot)
-
- @$(call install_finish)
+ @$(call install_init, gnuplot)
+ @$(call install_fixup, gnuplot,PACKAGE,gnuplot)
+ @$(call install_fixup, gnuplot,PRIORITY,optional)
+ @$(call install_fixup, gnuplot,VERSION,$(GNUPLOT_VERSION))
+ @$(call install_fixup, gnuplot,SECTION,base)
+ @$(call install_fixup, gnuplot,AUTHOR,"Robert Schwebel <r.schwebel\@pengutronix.de>")
+ @$(call install_fixup, gnuplot,DEPENDS,)
+ @$(call install_fixup, gnuplot,DESCRIPTION,missing)
+
+ @$(call install_copy, gnuplot, 0, 0, 0755, $(GNUPLOT_DIR)/src/gnuplot, /usr/bin/gnuplot)
+
+ @$(call install_finish, gnuplot)
@$(call touch, $@)