~ubuntu-branches/ubuntu/trusty/yelp-xsl/trusty

« back to all changes in this revision

Viewing changes to xslt/common/domains/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Simon McVittie, Iain Lane, Simon McVittie
  • Date: 2012-10-22 22:14:09 UTC
  • mfrom: (1.1.18) (17 sid)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: package-import@ubuntu.com-20121022221409-uk23sno8v819r2en
Tags: 3.6.1-1
* Team upload

[ Iain Lane ]
* debian/patches/fix_jquery_syntax_licensing, debian/copyright: Update to
  reflect that jQuery.Syntax is licensed as "MIT", not AGPL (Closes:
  #678981, LP: #1016751) 

[ Simon McVittie ]
* New upstream release (Closes: #690954)
  - revert the part of that patch that was applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
383
383
all: $(srcdir)/yelp-xsl.pot
384
384
 
385
385
yelp-xsl.xml: yelp-xsl.xml.in
386
 
        @echo "  GEN    $@"; \
 
386
        $(AM_V_GEN) ( \
387
387
        if [ ! -d .yelp-xsl ]; then mkdir .yelp-xsl; fi; \
388
388
        echo '<files>' > ".yelp-xsl.files"; \
389
 
        echo '<source href="yelp-xsl.xml.in"/>' >> ".yelp-xsl.files"; \
 
389
        echo '<source href="'"$(srcdir)/yelp-xsl.xml.in"'"/>' >> ".yelp-xsl.files"; \
390
390
        for lang in $(ALL_LINGUAS); do \
391
391
          msgfmt -o ".yelp-xsl/$$lang.mo" "$(top_srcdir)/po/$$lang.po" || exit 1; \
392
 
          (cd .yelp-xsl && itstool -o "$$lang.xml" -m "$$lang.mo" "../yelp-xsl.xml.in") || exit 1; \
 
392
          itstool -o ".yelp-xsl/$$lang.xml" -m ".yelp-xsl/$$lang.mo" $(srcdir)/yelp-xsl.xml.in || exit 1; \
393
393
          rm ".yelp-xsl/$$lang.mo" || exit 1; \
394
394
          echo '<file href="'".yelp-xsl/$$lang.xml"'"/>' >> ".yelp-xsl.files"; \
395
395
        done; \
396
396
        echo '</files>' >> ".yelp-xsl.files"; \
397
 
        xsltproc -o "$@" "msgs.xsl" ".yelp-xsl.files" || exit 1; \
 
397
        xsltproc --nonet -o "$@" $(srcdir)/"msgs.xsl" ".yelp-xsl.files" || exit 1; \
398
398
        for lang in $(ALL_LINGUAS); do rm ".yelp-xsl/$$lang.xml"; done; \
399
399
        rmdir .yelp-xsl; \
400
 
        rm .yelp-xsl.files
 
400
        rm .yelp-xsl.files)
401
401
 
402
402
# Tell versions [3.59,3.63) of GNU make to not export all variables.
403
403
# Otherwise a system limit (for SysV at least) may be exceeded.