Exclude meson.build from the list of color schemes. (#9648)

This commit is contained in:
Nics 2018-04-03 09:09:36 +02:00 committed by xarkes
parent 5247515d2c
commit 35aca48289

View File

@ -14,7 +14,7 @@ CWD=$(shell pwd)
symstall install-symlink:
mkdir -p "$P"
for FILE in * ; do \
if [ $$FILE != Makefile -a -f $$FILE ]; then \
if [ $$FILE != Makefile -a $$FILE != meson.build -a -f $$FILE ]; then \
ln -fs "${CWD}/$$FILE" "$P/$$FILE" ; \
fi ; \
done