mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 06:20:06 +00:00
* Makerules (Versions.all): Use $(foreach ...) instead of sh for loop
for $(map-firstversions), which better handles it being empty.
This commit is contained in:
parent
361742eda9
commit
6b3c3a3525
@ -1,5 +1,8 @@
|
||||
2000-03-19 Roland McGrath <roland@baalperazim.frob.com>
|
||||
|
||||
* Makerules (Versions.all): Use $(foreach ...) instead of sh for loop
|
||||
for $(map-firstversions), which better handles it being empty.
|
||||
|
||||
* shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu*): Set earliest
|
||||
supported version for libc 0.2.90.libio to GLIBC_2.2.
|
||||
|
||||
|
@ -294,9 +294,7 @@ $(common-objpfx)Versions.all: $(..)scripts/firstversions.awk \
|
||||
$(..)Versions.def \
|
||||
$(wildcard $(add-ons:%=$(..)%/Versions.def)) \
|
||||
$(common-objpfx)soversions.mk
|
||||
{ for map in $(map-firstversions); do \
|
||||
echo $$map; \
|
||||
done | sed 's/:/ : /'; \
|
||||
{ $(foreach map,$(map-firstversions),echo '$(subst :, : ,$(map))';) \
|
||||
cat $(filter-out $< $(common-objpfx)soversions.mk,$^); \
|
||||
} | LC_ALL=C $(AWK) -f $< > $@T
|
||||
mv -f $@T $@
|
||||
|
Loading…
Reference in New Issue
Block a user