Makefile.am: Clarify error message about missing distribution files.
authorJustin Pettit <jpettit@nicira.com>
Sat, 4 Apr 2015 23:30:44 +0000 (16:30 -0700)
committerJustin Pettit <jpettit@nicira.com>
Sun, 5 Apr 2015 17:01:00 +0000 (10:01 -0700)
The error message did not make it clear that the problem was due to
files being in git but not the distribution.

Signed-off-by: Justin Pettit <jpettit@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
Makefile.am

index cada997..8bc431b 100644 (file)
@@ -202,7 +202,7 @@ dist-hook-git: distfiles
            LC_ALL=C sort -u > all-gitfiles;                                \
          LC_ALL=C comm -1 -3 all-distfiles all-gitfiles > missing-distfiles; \
          if test -s missing-distfiles; then                                \
-           echo "The distribution is missing the following files:";        \
+           echo "The following files are in git but not the distribution:"; \
            cat missing-distfiles;                                          \
            exit 1;                                                         \
          fi;                                                               \