[PATCH 3/3] Add wcsmbs IFUNC tests
Roland McGrath
roland@hack.frob.com
Mon Oct 15 20:17:00 GMT 2012
> * wcsmbs/Makefile (ifunc-tests): New macro.
> (tests-ifunc): Likewise.
They're called variables in GNU makefiles.
> +ifunc-tests = $(addprefix test-,$(strop-tests))
> +tests-ifunc = $(addsuffix -ifunc,$(ifunc-tests))
Having these two variables with such similar names is confusing.
ifunc-tests isn't any use at all. Just do:
tests-ifunc := $(strop-tests:%=test-%-ifunc)
More information about the Libc-alpha
mailing list