aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-10-23 14:40:50 +0200
committerDavid Tardon <dtardon@redhat.com>2012-10-23 14:40:50 +0200
commit424191bbd2c5f73eb20bfca7c7b37a6bf25ac0e8 (patch)
tree97dd83079cafc1376f8b4872e7ed5a0a24460ad1
parent2548be535019c0a869c5759419c6964db5f82471 (diff)
realpath is not necessary anymore
Change-Id: Id21ecb7bbccbafdc54d1a5c1f33bc02ce1711012
-rw-r--r--CustomTarget_translate.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/CustomTarget_translate.mk b/CustomTarget_translate.mk
index 0bb96ddc990..bb26eb1caad 100644
--- a/CustomTarget_translate.mk
+++ b/CustomTarget_translate.mk
@@ -58,7 +58,6 @@ $(translations_DIR)/merge.done : \
$(WORKDIR)/CustomTarget/translations/localization_present.mk && \
touch $@)
-# TODO: remove the realpaths when we have git submodules
$(translations_DIR)/sdf-l10n/%.sdf : \
$(translations_DIR)/sdf-template/en-US.sdf \
$(OUTDIR_FOR_BUILD)/bin/po2lo \
@@ -71,7 +70,7 @@ $(translations_DIR)/sdf-l10n/%.sdf : \
define translations_make_po_deps
$(translations_DIR)/sdf-l10n/$(1).sdf : \
- $$(shell find $(realpath $(SRCDIR)/translations/source/$(1)) -name "*\.po")
+ $$(shell find $(SRCDIR)/translations/source/$(1) -name "*\.po")
endef