mirror of git://sourceware.org/git/glibc.git
* 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>
|
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
|
* shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu*): Set earliest
|
||||||
supported version for libc 0.2.90.libio to GLIBC_2.2.
|
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 \
|
$(..)Versions.def \
|
||||||
$(wildcard $(add-ons:%=$(..)%/Versions.def)) \
|
$(wildcard $(add-ons:%=$(..)%/Versions.def)) \
|
||||||
$(common-objpfx)soversions.mk
|
$(common-objpfx)soversions.mk
|
||||||
{ for map in $(map-firstversions); do \
|
{ $(foreach map,$(map-firstversions),echo '$(subst :, : ,$(map))';) \
|
||||||
echo $$map; \
|
|
||||||
done | sed 's/:/ : /'; \
|
|
||||||
cat $(filter-out $< $(common-objpfx)soversions.mk,$^); \
|
cat $(filter-out $< $(common-objpfx)soversions.mk,$^); \
|
||||||
} | LC_ALL=C $(AWK) -f $< > $@T
|
} | LC_ALL=C $(AWK) -f $< > $@T
|
||||||
mv -f $@T $@
|
mv -f $@T $@
|
||||||
|
|
Loading…
Reference in New Issue