Changeset 5295:fed536a2ce22 for po

Show
Ignore:
Timestamp:
2007-11-07 03:28:33 (13 months ago)
Author:
Rocco Rutte <pdmef@…>
Branch:
HEAD
Message:

Don't try to build $(PACKAGE).pot in srcdir as it may be read-only

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • po/Makefile.in.in

    r5275 r5295  
    6464.po.pox: 
    6565        $(MAKE) $(PACKAGE).pot 
    66         $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox 
     66        $(MSGMERGE) $< $(PACKAGE).pot -o $*.pox 
    6767 
    6868.po.mo: 
     
    8787# have been downloaded. 
    8888 
    89 $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in 
     89$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in 
    9090        rm -f $@ 
    9191        $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ 
     
    9393          --files-from=$(srcdir)/POTFILES.in \ 
    9494        && test ! -f $(PACKAGE).po \ 
    95            || ( rm -f $(srcdir)/$(PACKAGE).pot \ 
    96                 && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot ) 
     95           || ( rm -f $(PACKAGE).pot \ 
     96                && mv $(PACKAGE).po $(PACKAGE).pot ) 
    9797 
    9898