diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2001-12-10 09:37:11 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2001-12-10 09:37:11 +0000 |
commit | bc524dd0282da8b64907a238c9d7d397b77fdc0a (patch) | |
tree | f10c03f8caf243be9c5acc95e0a9889aaca37ee0 | |
parent | 2a74463013d28bb5ac16c0de290e1c9ed79dac28 (diff) | |
download | gcc-bc524dd0282da8b64907a238c9d7d397b77fdc0a.zip gcc-bc524dd0282da8b64907a238c9d7d397b77fdc0a.tar.gz gcc-bc524dd0282da8b64907a238c9d7d397b77fdc0a.tar.bz2 |
* Makefile.in (.po.gmo): Use POSIXLY_CORRECT argument ordering.
From-SVN: r47838
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d832d93..0a6315b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-12-09 Nathan Sidwell <nathan@codesourcery.com> + + * Makefile.in (.po.gmo): Use POSIXLY_CORRECT argument ordering. + Sun Dec 9 21:57:24 2001 Douglas B. Rupp <rupp@gnat.com> * config/alpha/t-vms (EXTRA_PARTS): Append $(VMS_EXTRA_PARTS) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 906c2b0..6e2df4a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3319,7 +3319,7 @@ update-po: $(CATALOGS:.gmo=.pox) # script does that. .po.gmo: -test -d po || mkdir po - $(GMSGFMT) --statistics $< -o $@ + $(GMSGFMT) --statistics -o $@ $< # The new .po has to be gone over by hand, so we deposit it into # build/po with a different extension. |