diff options
author | CST 1999 Shawn T. Amundson <amundson@gtk.org> | 1999-02-25 21:39:14 +0000 |
---|---|---|
committer | Shawn Amundson <amundson@src.gnome.org> | 1999-02-25 21:39:14 +0000 |
commit | 996f8e931a23610e4d476db0515e09e02b9bc1c3 (patch) | |
tree | 7ddb17399fb9645e945bbe402f2ca5596c1a423d /sanity_check | |
parent | 2a4c97f3b3d211dbd4e8edda3208960c25b4644d (diff) | |
download | gtk+-996f8e931a23610e4d476db0515e09e02b9bc1c3.tar.gz |
Incremented version to 1.2.0. -Shawn <amundson@gtk.org>GTK_1_2_0
Incremented version to 1.2.0. -Shawn <amundson@gtk.org>
Also:
Wed Feb 24 05:26:20 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* gtk/gtkitemfactory.h: added a dummy gpointer to
GtkItemFactoryClass for Tim Janik.
Mon Feb 22 21:22:11 1999 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcontainer.h gtk/gtkwidget.h: Added some
padding to class structures to allow addition
of signals without breaking binary compatibility.
Diffstat (limited to 'sanity_check')
-rwxr-xr-x | sanity_check | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sanity_check b/sanity_check index fabecb41a5..95dddf35ef 100755 --- a/sanity_check +++ b/sanity_check @@ -13,7 +13,7 @@ echo "Checking gtk+-$VERSION.tar.gz..." tar xfz gtk+-$VERSION.tar.gz -for file in README gtk+.spec docs/gtk-config.1 +for file in gtk+.spec docs/gtk-config.1 do echo -n "$file... " if [ "x`grep $VERSION gtk+-$VERSION/$file | wc -l | awk -F' ' '{print $1}'`" == "x1" ]; then @@ -24,6 +24,14 @@ do fi done +echo -n "README..." +if [ "x`grep $VERSION gtk+-$VERSION/README | wc -l | awk -F' ' '{print $1}'`" == "x4" ]; then + echo "ok" +else + echo "failed." + exit 1 +fi + echo -n "INSTALL..." if [ "x`grep $VERSION gtk+-$VERSION/INSTALL | wc -l | awk -F' ' '{print $1}'`" == "x3" ]; then echo "ok" |