summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc/eglibc-2.19/generate-supported.mk
blob: d2a28c2dc63916b97686d9ea8b6656308a6f6299 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/make

include $(IN)

all:
	rm -f $(OUT)
	touch $(OUT)
	for locale in $(SUPPORTED-LOCALES); do \
		[ $$locale = true ] && continue; \
		echo $$locale | sed 's,/, ,' >> $(OUT); \
	done