diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2001-07-15 19:33:11 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2001-07-15 19:33:11 +0000 |
commit | 01467f2afb8f52014c3d37d353bfb6c159e11008 (patch) | |
tree | 47a2c386a3ea270ca2962a73ead839f28b09ce1c /bfd/Makefile.am | |
parent | d75b5104df76c05fc85594425d35c30959eec84d (diff) | |
download | gdb-01467f2afb8f52014c3d37d353bfb6c159e11008.zip gdb-01467f2afb8f52014c3d37d353bfb6c159e11008.tar.gz gdb-01467f2afb8f52014c3d37d353bfb6c159e11008.tar.bz2 |
2001-07-15 H.J. Lu <hjl@gnu.org>
* Makefile.am (po/SRC-POTFILES.in): Use tmp.src instead of tmp.
(po/BLD-POTFILES.in): Use tmp.bld instead of tmp.
* Makefile.in: Regenerate.
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index 27946f6..299aff1 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -512,12 +512,12 @@ SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES) BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES) po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES) - for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp \ - && mv tmp $(srcdir)/po/SRC-POTFILES.in + for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp.src \ + && mv tmp.src $(srcdir)/po/SRC-POTFILES.in po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES) - for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp \ - && mv tmp $(srcdir)/po/BLD-POTFILES.in + for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp.bld \ + && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in # The following target is retained for upgrade purposes. # This target used to exist in older versions of this makefile, and was |