From 35aca4828953a843edd4b0235c26d29f9360ecd5 Mon Sep 17 00:00:00 2001 From: Nics Date: Tue, 3 Apr 2018 09:09:36 +0200 Subject: [PATCH] Exclude meson.build from the list of color schemes. (#9648) --- libr/cons/d/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libr/cons/d/Makefile b/libr/cons/d/Makefile index e6ed9041ee..fc15afabfc 100644 --- a/libr/cons/d/Makefile +++ b/libr/cons/d/Makefile @@ -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