From ee7c488f2d0b57d8431ff3bff1b15bb58762e197 Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Thu, 11 Sep 2014 22:37:35 -0700
Subject: [PATCH] Oops. Source tarballs need to include the tests directory.

---
 bin/make-src-dist.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/make-src-dist.sh b/bin/make-src-dist.sh
index 1e1c01691..7d2fc93bb 100755
--- a/bin/make-src-dist.sh
+++ b/bin/make-src-dist.sh
@@ -51,8 +51,8 @@ fi
 GTAR_OPTIONS="--exclude=.git --exclude='*.pot.~*~'"
 if [ -z "$INSTALL_DIR" ]; then
     echo "  Compressing with $ZIP"
-    ${GTAR:-tar} ${GTAR_OPTIONS} -cf - bin src | ${ZIP} > cmucl-src-$VERSION.tar.$ZIPEXT
+    ${GTAR:-tar} ${GTAR_OPTIONS} -cf - bin src tests | ${ZIP} > cmucl-src-$VERSION.tar.$ZIPEXT
 else
     # Install in the specified directory
-    ${GTAR:-tar} ${GTAR_OPTIONS} -cf - bin src | (cd $INSTALL_DIR; ${GTAR:-tar} xf -)
+    ${GTAR:-tar} ${GTAR_OPTIONS} -cf - bin src tests | (cd $INSTALL_DIR; ${GTAR:-tar} xf -)
 fi
-- 
GitLab