release.mak: don't complain about disted enums in win32
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 30 Jan 2006 15:23:09 +0000 (15:23 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 30 Jan 2006 15:23:09 +0000 (15:23 +0000)
Original commit message from CVS:

* release.mak:
don't complain about disted enums in win32

ChangeLog
release.mak

index 0d89da8..e482bd9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * release.mak:
+         don't complain about disted enums in win32
+
 2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * m4/gst-check.m4:
index 297bb5f..3731465 100644 (file)
@@ -16,10 +16,10 @@ release: dist
 # this in turn ensures that distcheck fails for missing .list files which is currently
 # shadowed when the corresponding .c and .h files are included.
 distcheck-hook:
-       @test "x" = "x`find $(distdir) -name \*-enumtypes.[ch]`" && \
+       @test "x" = "x`find $(distdir) -name \*-enumtypes.[ch] | grep -v win32`" && \
        test "x" = "x`find $(distdir) -name \*-marshal.[ch]`" || \
        ( $(ECHO) "*** Leftover enumtypes or marshal files in the tarball." && \
           $(ECHO) "*** Make sure the following files are not disted:" && \
-          find $(distdir) -name \*-enumtypes.[ch] && \
+          find $(distdir) -name \*-enumtypes.[ch] | grep -v win32 && \
           find $(distdir) -name \*-marshal.[ch] && \
           false )