summaryrefslogtreecommitdiff
path: root/daemon.am
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-12-31 13:19:29 +0100
committerLudovic Courtès <ludo@gnu.org>2012-12-31 13:19:29 +0100
commit03fa275801263a123495c723cbafe478cc0f3d95 (patch)
treee94804ad534030cf7963741487133c3d901170e5 /daemon.am
parent3aa6fab83b40af369b51cf8bbd16122c53f02d8a (diff)
downloadguix-patches-03fa275801263a123495c723cbafe478cc0f3d95.tar
guix-patches-03fa275801263a123495c723cbafe478cc0f3d95.tar.gz
build: Avoid error message during `make clean' when `test-tmp' doesn't exist.
* daemon.am (clean-local): Check whether $(GUIX_TEST_ROOT) exists before running `find'.
Diffstat (limited to 'daemon.am')
-rw-r--r--daemon.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/daemon.am b/daemon.am
index 26b07c4105..33e26d1dfe 100644
--- a/daemon.am
+++ b/daemon.am
@@ -175,5 +175,7 @@ TESTS += \
tests/guix-daemon.sh
clean-local:
- -find "$(GUIX_TEST_ROOT)" | xargs chmod +w
+ -if test -d "$(GUIX_TEST_ROOT)"; then \
+ find "$(GUIX_TEST_ROOT)" | xargs chmod +w; \
+ fi
-rm -rf "$(GUIX_TEST_ROOT)"