Files
meta-external-toolchain/recipes/eglibc/generate-supported.mk
Christopher Larson 39d5113478 Initial commit.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
2012-07-06 11:39:08 -04:00

12 lines
194 B
Makefile

#!/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