Skip to content

Commit

Permalink
Merge pull request #4344 from camptocamp/type
Browse files Browse the repository at this point in the history
Fix bad make replacement
  • Loading branch information
sbrunner committed Nov 23, 2018
2 parents e210f1b + e02da0a commit b4f48b4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -496,31 +496,31 @@ geoportal/c2cgeoportal_geoportal/locale/%/LC_MESSAGES/c2cgeoportal_geoportal.po:
$(PRERULE_CMD)
mkdir --parent $(dir $@)
tx pull --language $* --resource geomapfish.c2cgeoportal_geoportal-$(TX_VERSION) --force
sed -i 's/[[:space:]]\+$///' $@
sed -i 's/[[:space:]]\+$$//' $@
$(TOUCHBACK_TXRC)
test -s $@

geoportal/c2cgeoportal_geoportal/locale/%/LC_MESSAGES/ngeo.po: $(TX_DEPENDENCIES)
$(PRERULE_CMD)
mkdir --parent $(dir $@)
tx pull --language $* --resource ngeo.ngeo-$(TX_VERSION) --force
sed -i 's/[[:space:]]\+$///' $@
sed -i 's/[[:space:]]\+$$//' $@
$(TOUCHBACK_TXRC)
test -s $@

geoportal/c2cgeoportal_geoportal/locale/%/LC_MESSAGES/gmf.po: $(TX_DEPENDENCIES)
$(PRERULE_CMD)
mkdir --parent $(dir $@)
tx pull --language $* --resource ngeo.gmf-$(TX_VERSION) --force
sed -i 's/[[:space:]]\+$///' $@
sed -i 's/[[:space:]]\+$$//' $@
$(TOUCHBACK_TXRC)
test -s $@

admin/c2cgeoportal_admin/locale/%/LC_MESSAGES/c2cgeoportal_admin.po: $(TX_DEPENDENCIES)
$(PRERULE_CMD)
mkdir --parent $(dir $@)
tx pull --language $* --resource geomapfish.c2cgeoportal_admin-$(TX_VERSION) --force
sed -i 's/[[:space:]]\+$///' $@
sed -i 's/[[:space:]]\+$$//' $@
$(TOUCHBACK_TXRC)
test -s $@

Expand All @@ -529,7 +529,7 @@ geoportal/c2cgeoportal_geoportal/scaffolds/create/geoportal/+package+_geoportal/
$(PRERULE_CMD)
mkdir --parent $(dir $@)
tx pull --language $* --resource ngeo.gmf-apps-$(TX_VERSION) --force
sed -i 's/[[:space:]]\+$///' $@
sed -i 's/[[:space:]]\+$$//' $@
$(TOUCHBACK_TXRC)
test -s $@

Expand Down

0 comments on commit b4f48b4

Please sign in to comment.