]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
Fix handling custom builddir (until now objects were created in $(srcdir) not in...
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 31 Oct 2003 00:46:08 +0000 (00:46 +0000)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 31 Oct 2003 00:46:08 +0000 (00:46 +0000)
svn-id: @1469

po/Makefile.am

index f1fd4a068c50a6c96bb2d1109d53b63f64f610e4..4bbcc19b8c75c7bb508e1ce3a86b7684b3ef9404 100644 (file)
@@ -16,7 +16,7 @@ SUFFIXES = .po .mo .gmo
        $(MSGFMT) -o $@ $<
 
 .po.gmo: $(PACKAGE).pot
-       file=$(srcdir)/`echo $* | awk ' { gsub(/.*\//,NIL); print $0; } '`.gmo \
+       file=`echo $* | awk ' { gsub(/.*\//,NIL); print $0; } '`.gmo \
          && rm -f $$file && $(GMSGFMT) -o $$file $<
 
 $(PACKAGE).pot: Makefile $(POTSRC)
@@ -104,4 +104,4 @@ uninstall-hook:
        done
 
 clean-generic:
-       rm -f $(srcdir)/*.gmo $(scrdir)/*.mo $(PACKAGE).pot
+       rm -f *.gmo *.mo $(PACKAGE).pot
This page took 0.067951 seconds and 4 git commands to generate.