build: clean-go: Do not warn about *.go files in "test-tmp".
* Makefile.am (clean-go): Ignore "test-tmp" directory.
This commit is contained in:
parent
7b84610e21
commit
92becc3f15
|
@ -318,7 +318,7 @@ nobase_nodist_guileobject_DATA = $(GOBJECTS)
|
||||||
# Handy way to remove the .go files without removing all the rest.
|
# Handy way to remove the .go files without removing all the rest.
|
||||||
clean-go:
|
clean-go:
|
||||||
-$(RM) -f $(GOBJECTS)
|
-$(RM) -f $(GOBJECTS)
|
||||||
@find . -name '*.go' -print | \
|
@find . -path ./test-tmp -prune -o -name '*.go' -print | \
|
||||||
if test -t 1; then \
|
if test -t 1; then \
|
||||||
xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
|
xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
|
||||||
else \
|
else \
|
||||||
|
|
Loading…
Reference in New Issue