summaryrefslogtreecommitdiffstats
path: root/rules/gettext.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2005-12-11 12:46:17 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2005-12-11 12:46:17 +0000
commit6cac69e323ea6809e4c9cb94334fa9505a0905f4 (patch)
treec49eab618b1b2f4af48972fdce422f87f3f95bda /rules/gettext.make
parent50dc3ead7376f0a3e82ec46f57f74cf85623d5c9 (diff)
downloadptxdist-6cac69e323ea6809e4c9cb94334fa9505a0905f4.tar.gz
ptxdist-6cac69e323ea6809e4c9cb94334fa9505a0905f4.tar.xz
hide $(call touch) output with @; replace manual install by $(call install...
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.7-trunk@3502 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/gettext.make')
-rw-r--r--rules/gettext.make16
1 files changed, 9 insertions, 7 deletions
diff --git a/rules/gettext.make b/rules/gettext.make
index 04517dc69..577f6d7d9 100644
--- a/rules/gettext.make
+++ b/rules/gettext.make
@@ -37,7 +37,7 @@ gettext_get_deps = $(GETTEXT_SOURCE)
$(STATEDIR)/gettext.get: $(gettext_get_deps)
@$(call targetinfo, $@)
- $(call touch, $@)
+ @$(call touch, $@)
$(GETTEXT_SOURCE):
@$(call targetinfo, $@)
@@ -56,7 +56,7 @@ $(STATEDIR)/gettext.extract: $(gettext_extract_deps)
@$(call clean, $(GETTEXT_DIR))
@$(call extract, $(GETTEXT_SOURCE))
@$(call patchin, $(GETTEXT))
- $(call touch, $@)
+ @$(call touch, $@)
# ----------------------------------------------------------------------------
# Prepare
@@ -91,7 +91,7 @@ $(STATEDIR)/gettext.prepare: $(gettext_prepare_deps)
cd $(GETTEXT_DIR) && \
$(GETTEXT_PATH) $(GETTEXT_ENV) \
./configure $(GETTEXT_AUTOCONF)
- $(call touch, $@)
+ @$(call touch, $@)
# ----------------------------------------------------------------------------
# Compile
@@ -104,7 +104,7 @@ gettext_compile_deps = $(STATEDIR)/gettext.prepare
$(STATEDIR)/gettext.compile: $(gettext_compile_deps)
@$(call targetinfo, $@)
$(GETTEXT_PATH) make -C $(GETTEXT_DIR)
- $(call touch, $@)
+ @$(call touch, $@)
# ----------------------------------------------------------------------------
# Install
@@ -116,14 +116,16 @@ gettext_install_deps = $(STATEDIR)/gettext.compile
$(STATEDIR)/gettext.install: $(gettext_install_deps)
@$(call targetinfo, $@)
+ # FIXME
+ #@$(call install, GETTEXT)
rm -rf $(GETTEXT_INST_DIR)
- cd $(GETTEXT_DIR) && $(GETTEXT_PATH) make install prefix=$(GETTEXT_INST_DIR)/usr
+ cd $(GETTEXT_DIR) && $(GETTEXT_PATH) $(MAKE_INSTALL) prefix=$(GETTEXT_INST_DIR)/usr
mkdir -p $(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)/lib
cp -a $(GETTEXT_INST_DIR)/usr/lib/. $(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)/lib
mkdir -p $(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)/include
cp -a $(GETTEXT_INST_DIR)/usr/include/. $(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)/include
rm -rf $(GETTEXT_INST_DIR)
- $(call touch, $@)
+ @$(call touch, $@)
# ----------------------------------------------------------------------------
# Target-Install
@@ -156,7 +158,7 @@ $(STATEDIR)/gettext.targetinstall: $(gettext_targetinstall_deps)
@$(call install_finish)
- $(call touch, $@)
+ @$(call touch, $@)
# ----------------------------------------------------------------------------
# Clean