[Parted-commits] GNU Parted Official Repository: Changes to 'master'

Otavio Salvador otavio at alioth.debian.org
Sun May 24 00:03:13 UTC 2009


 .gitignore   |    1 +
 Makefile.am  |    6 +++---
 configure.ac |    2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

New commits:
commit d65ef19780f4ac09899e742c80841af596311309
Author: Otavio Salvador <otavio at ossystems.com.br>
Date:   Sat May 23 21:01:07 2009 -0300

    Makefile.am: fail if ABI has changed

diff --git a/Makefile.am b/Makefile.am
index d8a3b55..2cebc14 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -63,9 +63,9 @@ new-abi-baseline:
 check-abi: baseline_symbols current_symbols.txt
 	@diff -u ${baseline_file} ./current_symbols.txt 2>&1 \
          | tee libparted.abi-diff
-	@test `wc -l < libparted.abi-diff` -gt 0 \
-         && (echo "ABI has changed. Please, update you ABI package version."; exit 1) \
-         || exit 0
+	@test `wc -l < libparted.abi-diff` -eq 0 && exit 0 \
+         || echo "ABI has changed. Please, update you ABI package version." \
+         && exit 1
 
 MOSTLYCLEANDIRS = m4
 

commit dc5c26e227b5320a86f133d41ada10125176f083
Author: Otavio Salvador <otavio at ossystems.com.br>
Date:   Sat May 23 20:04:26 2009 -0300

    configure.ac: fix PED_MINOR_VERSION sed expression

diff --git a/configure.ac b/configure.ac
index d87dbdb..f0f75cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,7 +29,7 @@ dnl set PED_BINARY_AGE _and_ PED_INTERFACE_AGE to 0.
 # Derive these numbers from $PACKAGE_VERSION, which is set
 # when autoconf creates configure (see AC_INIT, above).
 PED_MAJOR_VERSION=`echo "$PACKAGE_VERSION"|sed 's/\..*//'`
-PED_MINOR_VERSION=`echo "$PACKAGE_VERSION"|sed 's/^[0-9][0-9]*\.//;s/\..*//'`
+PED_MINOR_VERSION=`echo "$PACKAGE_VERSION"|sed 's/^[[0-9]][[0-9]]*\.//;s/\..*//'`
 case $PACKAGE_VERSION in
   *.*.*.*.*)
     PED_MICRO_VERSION=`echo "$PACKAGE_VERSION" \

commit 9f4f0a791202c73c9c8b84b8a39e2b80439d32c9
Author: Otavio Salvador <otavio at ossystems.com.br>
Date:   Sat May 23 19:58:56 2009 -0300

    add build-aux to .gitignore

diff --git a/.gitignore b/.gitignore
index 0c933f4..b822aae 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,7 @@ Makefile
 Makefile.in
 aclocal.m4
 autom4te.cache
+build-aux
 config.cache
 config.h
 config.hin



More information about the Parted-commits mailing list