summaryrefslogtreecommitdiffstats
path: root/rules/joe.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/joe.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/joe.make')
-rw-r--r--rules/joe.make32
1 files changed, 16 insertions, 16 deletions
diff --git a/rules/joe.make b/rules/joe.make
index e1e3b224e..a09f53d1c 100644
--- a/rules/joe.make
+++ b/rules/joe.make
@@ -107,28 +107,28 @@ joe_targetinstall: $(STATEDIR)/joe.targetinstall
$(STATEDIR)/joe.targetinstall: $(joe_targetinstall_deps_default)
@$(call targetinfo, $@)
- @$(call install_init,default)
- @$(call install_fixup,PACKAGE,joe)
- @$(call install_fixup,PRIORITY,optional)
- @$(call install_fixup,VERSION,$(JOE_VERSION))
- @$(call install_fixup,SECTION,base)
- @$(call install_fixup,AUTHOR,"Oscar Peredo <oscar\@exis.cl>")
- @$(call install_fixup,DEPENDS,)
- @$(call install_fixup,DESCRIPTION,missing)
-
- @$(call install_copy, 0, 0, 0755, $(JOE_DIR)/joe, /bin/joe)
- @$(call install_copy, 0, 0, 0755, $(JOE_DIR)/termidx, /bin/termidx)
- @$(call install_copy, 0, 0, 0755, /etc/joe)
- @$(call install_copy, 0, 0, 0644, $(JOE_DIR)/joerc, /etc/joe/joerc,n)
- @$(call install_copy, 0, 0, 0755, /etc/joe/syntax)
+ @$(call install_init, joe)
+ @$(call install_fixup, joe,PACKAGE,joe)
+ @$(call install_fixup, joe,PRIORITY,optional)
+ @$(call install_fixup, joe,VERSION,$(JOE_VERSION))
+ @$(call install_fixup, joe,SECTION,base)
+ @$(call install_fixup, joe,AUTHOR,"Oscar Peredo <oscar\@exis.cl>")
+ @$(call install_fixup, joe,DEPENDS,)
+ @$(call install_fixup, joe,DESCRIPTION,missing)
+
+ @$(call install_copy, joe, 0, 0, 0755, $(JOE_DIR)/joe, /bin/joe)
+ @$(call install_copy, joe, 0, 0, 0755, $(JOE_DIR)/termidx, /bin/termidx)
+ @$(call install_copy, joe, 0, 0, 0755, /etc/joe)
+ @$(call install_copy, joe, 0, 0, 0644, $(JOE_DIR)/joerc, /etc/joe/joerc,n)
+ @$(call install_copy, joe, 0, 0, 0755, /etc/joe/syntax)
@for file in $(JOE_DIR)/syntax/*.jsf; do \
destination=`basename $$file`; \
echo "dst=$$destination"; \
- $(call install_copy, 0, 0, 0644, $$file, /etc/joe/syntax/$$destination, n); \
+ $(call install_copy, joe, 0, 0, 0644, $$file, /etc/joe/syntax/$$destination, n); \
done
- @$(call install_finish)
+ @$(call install_finish, joe)
@$(call touch, $@)
# ----------------------------------------------------------------------------