mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
build: clean-go: warn about stray .go files.
* Makefile.am (clean-go): Warn of .go files remaining in builddir.
This commit is contained in:
parent
71b611bc34
commit
cdf26f40b0
1 changed files with 6 additions and 0 deletions
|
@ -208,6 +208,12 @@ endif INSTALL_SRFI_37
|
|||
# Handy way to remove the .go files without removing all the rest.
|
||||
clean-go:
|
||||
-$(RM) -f $(GOBJECTS)
|
||||
@find . -name '*.go' -print | \
|
||||
if test -t 1; then \
|
||||
xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
|
||||
else \
|
||||
xargs -r echo "warning: stray .go files:"; \
|
||||
fi
|
||||
|
||||
|
||||
# Test extensions; has to be unconditional.
|
||||
|
|
Loading…
Reference in a new issue