mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Makefile: test for xsel directory before trying to clean it.
This avoids the users seeing ignored errors for make -C clean.
This commit is contained in:
parent
df23913bb8
commit
f2ad4a2e8e
1 changed files with 1 additions and 1 deletions
|
@ -887,7 +887,7 @@ clean:
|
||||||
rm -rf doc;
|
rm -rf doc;
|
||||||
rm -rf fish-@PACKAGE_VERSION@
|
rm -rf fish-@PACKAGE_VERSION@
|
||||||
rm -f $(TRANSLATIONS)
|
rm -f $(TRANSLATIONS)
|
||||||
-make -C $(XSEL) clean
|
test ! -d "$(XSEL)" || make -C $(XSEL) clean
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue