diff options
author | Roland McGrath <roland@gnu.org> | 2006-03-01 10:35:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-03-01 10:35:59 +0000 |
commit | 04dca8d316213b951249e3481ed8d9408495421d (patch) | |
tree | dfdfcdf5a03e988f0bc3d772e5ea2d43a65f3a5b /csu/Makefile | |
parent | c9dc3f62698e9b456869ba8c1f0fd8f3c672ebf2 (diff) | |
download | glibc-04dca8d316213b951249e3481ed8d9408495421d.tar.gz glibc-04dca8d316213b951249e3481ed8d9408495421d.tar.xz glibc-04dca8d316213b951249e3481ed8d9408495421d.zip |
* version.h (VERSION): 2.3.91
* Makeconfig (sysdeps-srcdirs): New variable. (sysdeps-add-ons-srcdirs): Use it. * csu/Makefile (all-Banner-files): Use it. * Makefile (dist-selector): New variable. (glibc-%.tar rule): Use it. Make $(dist-separate) tarballs contain one version-named directory.
Diffstat (limited to 'csu/Makefile')
-rw-r--r-- | csu/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/csu/Makefile b/csu/Makefile index 54af0d6662..0e2ae07cf7 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -200,7 +200,9 @@ $(objpfx)abi-tag.h: $(..)abi-tags if test -r $@.new; then mv -f $@.new $@; \ else echo >&2 'This configuration not matched in $<'; exit 1; fi -all-Banner-files = $(wildcard $(addsuffix /Banner,$(subdir-srcdirs))) +all-Banner-files = $(wildcard $(addsuffix /Banner,\ + $(sort $(subdir-srcdirs) \ + $(sysdeps-srcdirs)))) $(objpfx)version-info.h: $(common-objpfx)config.make $(all-Banner-files) $(make-target-directory) (case $(config-os) in \ |