diff options
author | David Carlton <carlton@bactrian.org> | 2003-09-17 21:29:05 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2003-09-17 21:29:05 +0000 |
commit | 72f0e457e8dc611ddd1b08e3ff813aaec6ef18ed (patch) | |
tree | df929f2af7e4e3c92dcf550e40af77c8e7abee27 /bfd/Makefile.am | |
parent | ed64f8fde6d716661977e17e16eff7602cab43f0 (diff) | |
download | gdb-72f0e457e8dc611ddd1b08e3ff813aaec6ef18ed.zip gdb-72f0e457e8dc611ddd1b08e3ff813aaec6ef18ed.tar.gz gdb-72f0e457e8dc611ddd1b08e3ff813aaec6ef18ed.tar.bz2 |
2003-09-17 David Carlton <carlton@kealia.com>
* Merge with mainline; tag is carlton_dictionary-20030917-merge.
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index eaec975..d27c873 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -606,23 +606,15 @@ 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.src \ + for file in $(SRC_POTFILES); do echo $$file; done \ + | LC_COLLATE= 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.bld \ + for file in $(BLD_POTFILES); do echo $$file; done \ + | LC_COLLATE= 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 -# referenced by <builddir>/po/Makefile (which is created from <srcdir>/po/Make-in) -# So old versions of <builddir>/po/Makefile will try to regenerate themselves -# when make is next run, but that dependency cannot be completed without a build -# of po/POTFILES.in. Hence the presence of this rule. This rule will be deleted -# once it is no longer needed - probably in the fall of 2001. -po/POTFILES.in: - - diststuff: info # Various kinds of .o files to put in libbfd.a: |