"-executable" is a GNU only extension to find. Instead replace it with a
POSIX compatible one.
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
.PHONY: clean
clean:
find . \( -name "*.o" -o -name "*.d" -o -name "*.lds" \) -delete
- find tests/ \( -executable -name "test-*" -o -name "test-*.cfg" \
+ find tests/ \( -perm -a=x -name "test-*" -o -name "test-*.cfg" \
-o -name "test-info.json" \) -delete
.PHONY: distclean