mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-25 03:17:52 +02:00
build
debian
docs
gio
glib
gmodule
gobject
gthread
m4macros
po
tests
.gitignore
AUTHORS
COPYING
ChangeLog.pre-1-2
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-14
ChangeLog.pre-2-16
ChangeLog.pre-2-18
ChangeLog.pre-2-2
ChangeLog.pre-2-20
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
HACKING
INSTALL.in
Makefile.am
Makefile.decl
NEWS
NEWS.pre-1-3
README.commits
README.in
README.win32
acglib.m4
acinclude.m4
autogen.sh
config.h.win32.in
configure.ac
gio-2.0.pc.in
gio-unix-2.0.pc.in
gio-windows-2.0.pc.in
glib-2.0.pc.in
glib-gettextize.in
glib-zip.in
glib.doap
gmodule-2.0.pc.in
gmodule-export-2.0.pc.in
gmodule-no-export-2.0.pc.in
gobject-2.0.pc.in
gthread-2.0.pc.in
makefile.msc
mkinstalldirs
msvc_recommended_pragmas.h
sanity_check
win32-fixup.pl
2006-11-14 Behdad Esfahbod <behdad@gnome.org> * sanity_check: Replace bash-specific == with sh-understood =. Fixes bug #373864.
41 lines
723 B
Bash
Executable File
41 lines
723 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
|
|
if [ ! -f glib-$VERSION.tar.gz ]; then
|
|
echo "ERROR: glib-$VERSION.tar.gz does not exist..."
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
|
|
echo "Checking glib-$VERSION.tar.gz..."
|
|
tar xfz glib-$VERSION.tar.gz
|
|
|
|
|
|
for file in INSTALL NEWS README
|
|
do
|
|
echo -n "$file... "
|
|
if [ "x`grep $VERSION glib-$VERSION/$file | wc -l | awk -F' ' '{print $1}'`" = "x0" ]; then
|
|
echo "failed."
|
|
#exit 1
|
|
else
|
|
echo "ok"
|
|
fi
|
|
done
|
|
|
|
echo -n "INSTALL..."
|
|
if [ "x`grep $VERSION glib-$VERSION/INSTALL | wc -l | awk -F' ' '{print $1}'`" = "x2" ]; then
|
|
echo "ok"
|
|
else
|
|
echo "failed."
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Number of lines in created documentation files:"
|
|
|
|
wc -l glib-$VERSION/docs/reference/*/html/*.html | grep total
|
|
|
|
rm -rf glib-$VERSION
|