summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2012-09-13 16:38:56 +0300
committerAlon Levy <alevy@redhat.com>2012-09-13 16:38:58 +0300
commitc48812ee5177aaae5f1f46a26736c2812d95552a (patch)
tree6bdde1e47d0b5572e6cab1fb7514087c6edad00f
parent56eef9eeaaeab11545982792094843c60bab0d1c (diff)
downloadspice-c48812ee5177aaae5f1f46a26736c2812d95552a.tar.gz
spice-c48812ee5177aaae5f1f46a26736c2812d95552a.tar.xz
spice-c48812ee5177aaae5f1f46a26736c2812d95552a.zip
server/Makefile.am: fix for make distcheck
Doesn't make sense to distribute test_spice_version.sh, so just ensure the build passes if it doesn't exist.
-rw-r--r--server/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/Makefile.am b/server/Makefile.am
index 18a9d8a7..b62d98c0 100644
--- a/server/Makefile.am
+++ b/server/Makefile.am
@@ -129,4 +129,4 @@ EXTRA_DIST = \
BUILT_SOURCES = $(spice_built_sources)
dist-hook:
- if ! ./tests/test_spice_version.sh ; then exit 1; fi
+ if [ -e ./tests/test_spice_version.sh -a ! ./tests/test_spice_version.sh ] ; then exit 1; fi