This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 3/3] Add wcsmbs IFUNC tests


> 	* 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)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]