[parted/f15] - Fix bug in hfs probe code (#714758) - Make pc98 detection depend on specific signatures (#646053)

Brian C. Lane bcl at fedoraproject.org
Fri Oct 14 19:27:16 UTC 2011


commit 81b27b849fcd355a7d941b754111833bff040d6c
Author: Brian C. Lane <bcl at redhat.com>
Date:   Tue Oct 11 16:53:12 2011 -0700

    - Fix bug in hfs probe code (#714758)
    - Make pc98 detection depend on specific signatures (#646053)
    - Turn off -Werror
    - Patch the test/Makefile.in to add the new tests
    - Change new tests to use correct init script

 parted-2.3-gpt-avoid-division-by-zero.patch        |   72 +
 parted-2.3-patch-makefile.in-for-new-tests.patch   |  173 +
 ....0-change-test-library-init-for-new-tests.patch |   53 +
 ...ix-a-bug-in-the-hfs-probe-functions-71475.patch |   67 +
 ...-make-pc98-detection-depend-on-signatures.patch |   75 +
 ...-add-tests-for-new-pc98-signatures-646053.patch |   75 +
 parted.spec                                        |   15 +-
 parted/2.3/11.fc15/build.log                       | 3400 ++++++++++++++++++++
 parted/2.3/11.fc15/root.log                        |  698 ++++
 parted/2.3/11.fc15/state.log                       |    9 +
 10 files changed, 4635 insertions(+), 2 deletions(-)
---
diff --git a/parted-2.3-gpt-avoid-division-by-zero.patch b/parted-2.3-gpt-avoid-division-by-zero.patch
new file mode 100644
index 0000000..627f6ed
--- /dev/null
+++ b/parted-2.3-gpt-avoid-division-by-zero.patch
@@ -0,0 +1,72 @@
+From e21949b59729890e4ea940e1739999faa8345290 Mon Sep 17 00:00:00 2001
+From: Jim Meyering <meyering at redhat.com>
+Date: Fri, 11 Mar 2011 13:35:06 +0100
+Subject: [PATCH 1/6] gpt: avoid division by zero
+
+* libparted/labels/gpt.c (_header_is_valid): Reject as invalid if
+FirstUsableLBA < 3.
+(gpt_get_max_supported_partition_count): Ensure that we don't divide
+by zero: verify that the GPT header is valid before dividing by its
+"size of partition entry".  Under normal circumstances, the on-disk
+PE size field is reasonable because we have just written it.  However,
+there are two ways it can end up zero: we lose the race when some other
+process pokes a 4-byte 0 into just the right location between when
+we write it and when we re-read the value we're about to divide by.
+Then there's the case that I encountered: using an old USB (8MB) key,
+mklabel gpt failed due to division by zero.  The device reported no
+failure when writing the initial header, yet when reading back that
+very same sector (also successful), parted got all 0 bytes.
+* NEWS (Bug fixes): Mention it.
+---
+ NEWS                   |    5 +++++
+ libparted/labels/gpt.c |   11 +++++++++++
+ 2 files changed, 16 insertions(+), 0 deletions(-)
+
+diff --git a/NEWS b/NEWS
+index d02d04d..8b54842 100644
+--- a/NEWS
++++ b/NEWS
+@@ -43,6 +43,11 @@ GNU parted NEWS                                    -*- outline -*-
+   This is not an indicator that we'll be supporting this code.
+   On the contrary, it is slated to be removed.
+ 
++  libparted: gpt label creation can no longer divide by zero with a
++  defective device or when a concurrent writer modifies the PE-size
++  bytes in the small interval between the write and subsequent read
++  of the primary GPT header.
++
+ ** Changes in behavior
+ 
+   libparted no longer issues an exception/warning about >512-byte
+diff --git a/libparted/labels/gpt.c b/libparted/labels/gpt.c
+index 20f10e2..5af4cd5 100644
+--- a/libparted/labels/gpt.c
++++ b/libparted/labels/gpt.c
+@@ -657,6 +657,10 @@ _header_is_valid (PedDisk const *disk, GuidPartitionTableHeader_t *gpt,
+   if (check_PE_array_CRC (disk, gpt, &crc_match) != 0 || !crc_match)
+     return 0;
+ 
++  PedSector first_usable = PED_LE64_TO_CPU (gpt->FirstUsableLBA);
++  if (first_usable < 3)
++    return 0;
++
+   origcrc = gpt->HeaderCRC32;
+   gpt->HeaderCRC32 = 0;
+   if (pth_crc32 (dev, gpt, &crc) != 0)
+@@ -1738,6 +1742,13 @@ gpt_get_max_supported_partition_count (const PedDisk *disk, int *max_n)
+   if (pth == NULL)
+     return false;
+ 
++  if (!_header_is_valid (disk, pth, 1))
++    {
++      pth->FirstUsableLBA = 34;
++      pth->SizeOfPartitionEntry
++        = PED_CPU_TO_LE32 (sizeof (GuidPartitionEntry_t));
++    }
++
+   *max_n = (disk->dev->sector_size * (pth->FirstUsableLBA - 2)
+             / PED_LE32_TO_CPU (pth->SizeOfPartitionEntry));
+   pth_free (pth);
+-- 
+1.7.6.4
+
diff --git a/parted-2.3-patch-makefile.in-for-new-tests.patch b/parted-2.3-patch-makefile.in-for-new-tests.patch
new file mode 100644
index 0000000..9cc2d96
--- /dev/null
+++ b/parted-2.3-patch-makefile.in-for-new-tests.patch
@@ -0,0 +1,173 @@
+From 2e42760f2faad23e0fc2239f58ff28fe05e603c8 Mon Sep 17 00:00:00 2001
+From: Fedora Ninjas <parted-owner at fedoraproject.org>
+Date: Fri, 14 Oct 2011 10:56:50 -0700
+Subject: [PATCH] patch Makefile.in for new tests
+
+---
+ tests/Makefile.in |   60 ++++++++++++++++++++++++----------------------------
+ 1 files changed, 28 insertions(+), 32 deletions(-)
+
+diff --git a/tests/Makefile.in b/tests/Makefile.in
+index 4221d17..47f542f 100644
+--- a/tests/Makefile.in
++++ b/tests/Makefile.in
+@@ -1,9 +1,9 @@
+-# Makefile.in generated by automake 1.11a from Makefile.am.
++# Makefile.in generated by automake 1.11.1 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010  Free Software
+-# Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -134,7 +134,7 @@ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
+ 	$(AM_CFLAGS) $(CFLAGS)
+ AM_V_CC = $(am__v_CC_$(V))
+ am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
+-am__v_CC_0 = @echo "  CC      " $@;
++am__v_CC_0 = @echo "  CC    " $@;
+ AM_V_at = $(am__v_at_$(V))
+ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
+ am__v_at_0 = @
+@@ -144,10 +144,10 @@ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
+ 	$(AM_LDFLAGS) $(LDFLAGS) -o $@
+ AM_V_CCLD = $(am__v_CCLD_$(V))
+ am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
+-am__v_CCLD_0 = @echo "  CCLD    " $@;
++am__v_CCLD_0 = @echo "  CCLD  " $@;
+ AM_V_GEN = $(am__v_GEN_$(V))
+ am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
+-am__v_GEN_0 = @echo "  GEN     " $@;
++am__v_GEN_0 = @echo "  GEN   " $@;
+ SOURCES = dup-clobber.c print-align.c print-max.c
+ DIST_SOURCES = dup-clobber.c print-align.c print-max.c
+ ETAGS = etags
+@@ -216,9 +216,8 @@ $(am__sh_e_setup);					\
+ $(am__vpath_adj_setup) $(am__vpath_adj)			\
+ srcdir=$(srcdir); export srcdir;			\
+ rm -f $@-t;						\
+-am__trap='rm -f '\''$(abs_builddir)/$@-t'\''; (exit $$st); exit $$st'; \
+-trap "st=129; $$am__trap" 1; trap "st=130; $$am__trap" 2;	\
+-trap "st=141; $$am__trap" 13; trap "st=143; $$am__trap" 15; \
++trap 'st=$$?; rm -f '\''$(abs_builddir)/$@-t'\''; (exit $$st); exit $$st' \
++  1 2 13 15;						\
+ am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;		\
+ test "x$$am__odir" = x. || $(MKDIR_P) "$$am__odir" || exit $$?;	\
+ if test -f "./$$f"; then dir=./;			\
+@@ -714,6 +713,8 @@ PARTED_LIBS = @PARTED_LIBS@
+ PARTED_USABLE_TEST_DIR = @PARTED_USABLE_TEST_DIR@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ PKG_CONFIG = @PKG_CONFIG@
++PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
++PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
+ POSUB = @POSUB@
+ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@
+ PRIPTR_PREFIX = @PRIPTR_PREFIX@
+@@ -934,6 +935,7 @@ TESTS = \
+   t1700-ext-probe.sh \
+   t2100-mkswap.sh \
+   t2200-dos-label-recog.sh \
++  t2201-pc98-label-recog.sh \
+   t2300-dos-label-extended-bootcode.sh \
+   t2310-dos-extended-2-sector-min-offset.sh \
+   t2400-dos-hfs-partition-type.sh \
+@@ -955,7 +957,8 @@ TESTS = \
+   t9020-alignment.sh \
+   t9021-maxima.sh \
+   t9030-align-check.sh \
+-  t9040-many-partitions.sh
++  t9040-many-partitions.sh \
++  t9041-undetected-in-use-16th-partition.sh
+ 
+ EXTRA_DIST = \
+   $(TESTS) test-lib.sh t-lib.sh lvm-utils.sh t-local.sh t-lvm.sh init.sh
+@@ -1084,23 +1087,26 @@ distclean-compile:
+ .c.o:
+ @am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+ @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(AM_V_CC at am__nodep@)$(COMPILE) -c $<
++ at am__fastdepCC_FALSE@	$(COMPILE) -c $<
+ 
+ .c.obj:
+ @am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+ @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(AM_V_CC at am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
++ at am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
+ 
+ .c.lo:
+ @am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+ @am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(AM_V_CC at am__nodep@)$(LTCOMPILE) -c -o $@ $<
++ at am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -1157,20 +1163,6 @@ GTAGS:
+ 	  && $(am__cd) $(top_srcdir) \
+ 	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+-cscopelist:  $(HEADERS) $(SOURCES) $(LISP)
+-	list='$(SOURCES) $(HEADERS) $(LISP)'; \
+-	case "$(srcdir)" in \
+-	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
+-	  *) sdir=$(subdir)/$(srcdir) ;; \
+-	esac; \
+-	for i in $$list; do \
+-	  if test -f "$$i"; then \
+-	    echo "$(subdir)/$$i"; \
+-	  else \
+-	    echo "$$sdir/$$i"; \
+-	  fi; \
+-	done >> $(top_builddir)/cscope.files
+-
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+ 
+@@ -1366,6 +1358,8 @@ t2100-mkswap.sh.log: t2100-mkswap.sh
+ 	@p='t2100-mkswap.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
+ t2200-dos-label-recog.sh.log: t2200-dos-label-recog.sh
+ 	@p='t2200-dos-label-recog.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
++t2201-pc98-label-recog.sh.log: t2201-pc98-label-recog.sh
++	@p='t2201-pc98-label-recog.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
+ t2300-dos-label-extended-bootcode.sh.log: t2300-dos-label-extended-bootcode.sh
+ 	@p='t2300-dos-label-extended-bootcode.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
+ t2310-dos-extended-2-sector-min-offset.sh.log: t2310-dos-extended-2-sector-min-offset.sh
+@@ -1410,6 +1404,8 @@ t9030-align-check.sh.log: t9030-align-check.sh
+ 	@p='t9030-align-check.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
+ t9040-many-partitions.sh.log: t9040-many-partitions.sh
+ 	@p='t9040-many-partitions.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
++t9041-undetected-in-use-16th-partition.sh.log: t9041-undetected-in-use-16th-partition.sh
++	@p='t9041-undetected-in-use-16th-partition.sh'; $(am__check_pre) $(LOG_COMPILE) "$$tst" $(am__check_post)
+ .test.log:
+ 	@p='$<'; $(am__check_pre) $(TEST_LOG_COMPILE) "$$tst" $(am__check_post)
+ @am__EXEEXT_TRUE at .test$(EXEEXT).log:
+@@ -1556,8 +1552,8 @@ uninstall-am:
+ 	recheck-html
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am check-html \
+-	clean clean-checkPROGRAMS clean-generic clean-libtool \
+-	cscopelist ctags distclean distclean-compile distclean-generic \
++	clean clean-checkPROGRAMS clean-generic clean-libtool ctags \
++	distclean distclean-compile distclean-generic \
+ 	distclean-libtool distclean-tags distdir dvi dvi-am html \
+ 	html-am info info-am install install-am install-data \
+ 	install-data-am install-dvi install-dvi-am install-exec \
+-- 
+1.7.6.4
+
diff --git a/parted-3.0-change-test-library-init-for-new-tests.patch b/parted-3.0-change-test-library-init-for-new-tests.patch
new file mode 100644
index 0000000..167af47
--- /dev/null
+++ b/parted-3.0-change-test-library-init-for-new-tests.patch
@@ -0,0 +1,53 @@
+From df4b9b446dc2758ca16a266dfa267a9edf5d4c7d Mon Sep 17 00:00:00 2001
+From: Fedora Ninjas <parted-owner at fedoraproject.org>
+Date: Fri, 14 Oct 2011 11:17:46 -0700
+Subject: [PATCH] Change test library init for new tests
+
+---
+ tests/t2201-pc98-label-recog.sh                 |   10 +++++++++-
+ tests/t9041-undetected-in-use-16th-partition.sh |    8 +++++++-
+ 2 files changed, 16 insertions(+), 2 deletions(-)
+
+diff --git a/tests/t2201-pc98-label-recog.sh b/tests/t2201-pc98-label-recog.sh
+index 6228159..68058fe 100755
+--- a/tests/t2201-pc98-label-recog.sh
++++ b/tests/t2201-pc98-label-recog.sh
+@@ -16,7 +16,15 @@
+ # You should have received a copy of the GNU General Public License
+ # along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ 
+-. "${srcdir=.}/init.sh"; path_prepend_ ../parted
++if test "$VERBOSE" = yes; then
++  set -x
++  parted --version
++fi
++
++test_description='Recognized PC98 labeled disks'
++
++: ${srcdir=.}
++. $srcdir/t-lib.sh
+ 
+ require_512_byte_sector_size_
+ 
+diff --git a/tests/t9041-undetected-in-use-16th-partition.sh b/tests/t9041-undetected-in-use-16th-partition.sh
+index 74c30fc..524a611 100644
+--- a/tests/t9041-undetected-in-use-16th-partition.sh
++++ b/tests/t9041-undetected-in-use-16th-partition.sh
+@@ -16,7 +16,13 @@
+ # You should have received a copy of the GNU General Public License
+ # along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ 
+-. "${srcdir=.}/init.sh"; path_prepend_ ../parted
++if test "$VERBOSE" = yes; then
++  set -x
++  parted --version
++fi
++
++: ${srcdir=.}
++. $srcdir/t-lib.sh
+ 
+ require_root_
+ require_scsi_debug_module_
+-- 
+1.7.6.4
+
diff --git a/parted-3.0-libparted-Fix-a-bug-in-the-hfs-probe-functions-71475.patch b/parted-3.0-libparted-Fix-a-bug-in-the-hfs-probe-functions-71475.patch
new file mode 100644
index 0000000..f8fab9d
--- /dev/null
+++ b/parted-3.0-libparted-Fix-a-bug-in-the-hfs-probe-functions-71475.patch
@@ -0,0 +1,67 @@
+From fa9d7db0dfc89befe87a73f22e7d0473e505c9d9 Mon Sep 17 00:00:00 2001
+From: "Brian C. Lane" <bcl at redhat.com>
+Date: Wed, 5 Oct 2011 15:51:10 -0700
+Subject: [PATCH 4/4] libparted: Fix a bug in the hfs probe functions
+ (#714758)
+
+* libparted/fs/hfs/probe.c (hfsplus_probe): Add a check on the
+  search value and reject it if it is negative.
+  (hfsx_probe): Same
+  (hfs_and_wrapper_probe): Same
+---
+ libparted/fs/hfs/probe.c |   18 +++++++++++-------
+ 1 files changed, 11 insertions(+), 7 deletions(-)
+
+diff --git a/libparted/fs/hfs/probe.c b/libparted/fs/hfs/probe.c
+index 8c656cf..bf4d70b 100644
+--- a/libparted/fs/hfs/probe.c
++++ b/libparted/fs/hfs/probe.c
+@@ -82,7 +82,8 @@ hfs_and_wrapper_probe (PedGeometry* geom)
+ 		  + ((PedSector) PED_BE16_TO_CPU (mdb->total_blocks)
+ 		     * (PED_BE32_TO_CPU (mdb->block_size) / PED_SECTOR_SIZE_DEFAULT )));
+ 	max = search + (PED_BE32_TO_CPU (mdb->block_size) / PED_SECTOR_SIZE_DEFAULT);
+-	if (!(geom_ret = ped_geometry_new (geom->dev, geom->start, search + 2)))
++	if ((search < 0)
++	    || !(geom_ret = ped_geometry_new (geom->dev, geom->start, search + 2)))
+ 		return NULL;
+ 
+ 	for (; search < max; search++) {
+@@ -141,8 +142,9 @@ hfsplus_probe (PedGeometry* geom)
+ 		      - 2;
+ 		search = max - 2 * ( PED_BE32_TO_CPU (vh->block_size)
+ 				     / PED_SECTOR_SIZE_DEFAULT ) + 2;
+-		if (!(geom_ret = ped_geometry_new (geom->dev, geom->start,
+-						   search + 2)))
++		if ((search < 0)
++		    || !(geom_ret = ped_geometry_new (geom->dev, geom->start,
++						      search + 2)))
+ 			return NULL;
+ 
+ 		for (; search < max; search++) {
+@@ -156,8 +158,9 @@ hfsplus_probe (PedGeometry* geom)
+ 		search = ((PedSector) PED_BE32_TO_CPU (vh->total_blocks) - 1)
+ 		      * ( PED_BE32_TO_CPU (vh->block_size) / PED_SECTOR_SIZE_DEFAULT )
+ 		      - 1;
+-		if (!ped_geometry_set (geom_ret, geom_ret->start,
+-					       search + 2)
++		if ((search < 0)
++		    || !ped_geometry_set (geom_ret, geom_ret->start,
++					  search + 2)
+ 		    || !ped_geometry_read (geom_ret, buf, search, 1)
+ 		    || vh->signature != PED_CPU_TO_BE16 (HFSP_SIGNATURE)) {
+ 		    	ped_geometry_destroy (geom_ret);
+@@ -213,8 +216,9 @@ hfsx_probe (PedGeometry* geom)
+ 		      * ( PED_BE32_TO_CPU (vh->block_size) / PED_SECTOR_SIZE_DEFAULT )
+ 		      - 2;
+ 	search = max - ( PED_BE32_TO_CPU (vh->block_size) / PED_SECTOR_SIZE_DEFAULT );
+-	if (!(geom_ret = ped_geometry_new (geom->dev, geom->start,
+-					   search + 2)))
++	if ((search < 0)
++	    || !(geom_ret = ped_geometry_new (geom->dev, geom->start,
++					      search + 2)))
+ 		return NULL;
+ 	for (; search < max; search++) {
+ 		if (!ped_geometry_set (geom_ret, geom_ret->start,
+-- 
+1.7.6.4
+
diff --git a/parted-3.0-libparted-make-pc98-detection-depend-on-signatures.patch b/parted-3.0-libparted-make-pc98-detection-depend-on-signatures.patch
new file mode 100644
index 0000000..2590b8a
--- /dev/null
+++ b/parted-3.0-libparted-make-pc98-detection-depend-on-signatures.patch
@@ -0,0 +1,75 @@
+From 68ff2e0c7563054e95389c1da5164b3d9c75c52b Mon Sep 17 00:00:00 2001
+From: "Brian C. Lane" <bcl at redhat.com>
+Date: Fri, 7 Oct 2011 10:56:00 -0700
+Subject: [PATCH 1/2] libparted: make pc98 detection depend on signatures
+ (#646053)
+
+pc98 is not a common disk label. Change pc98_probe to only return true
+if one of the recognized signatures is present.
+Currently these include:
+
+IPL1
+Linux 98
+GRUB/98
+
+This will prevent false-positive detection on msdos labeled disks
+
+* libparted/labels/pc98.c (pc98_probe): Change to require signature
+  (pc98_check_ipl_signature): Add more signatures
+---
+ libparted/labels/pc98.c |   32 ++++++++++----------------------
+ 1 files changed, 10 insertions(+), 22 deletions(-)
+
+diff --git a/libparted/labels/pc98.c b/libparted/labels/pc98.c
+index 3afa8a2..ea3cf4e 100644
+--- a/libparted/labels/pc98.c
++++ b/libparted/labels/pc98.c
+@@ -140,7 +140,14 @@ pc98_check_magic (const PC98RawTable *part_table)
+ static int
+ pc98_check_ipl_signature (const PC98RawTable *part_table)
+ {
+-	return !memcmp (part_table->boot_code + 4, "IPL1", 4);
++	if (memcmp (part_table->boot_code + 4, "IPL1", 4) == 0)
++		return 1;
++	else if (memcmp (part_table->boot_code + 4, "Linux 98", 8) == 0)
++		return 1;
++	else if (memcmp (part_table->boot_code + 4, "GRUB/98 ", 8) == 0)
++		return 1;
++	else
++		return 0;
+ }
+ 
+ static int
+@@ -192,27 +199,8 @@ pc98_probe (const PedDevice *dev)
+ 	if (!pc98_check_magic (&part_table))
+ 		return 0;
+ 
+-	/* check consistency */
+-	empty = 1;
+-	for (p = part_table.partitions;
+-	     p < part_table.partitions + MAX_PART_COUNT;
+-	     p++)
+-	{
+-		if (p->mid == 0 && p->sid == 0)
+-			continue;
+-		empty = 0;
+-		if (!check_partition_consistency (dev, p))
+-			return 0;
+-	}
+-
+-	/* check boot loader */
+-	if (pc98_check_ipl_signature (&part_table))
+-		return 1;
+-	else if (part_table.boot_code[0])	/* invalid boot loader */
+-		return 0;
+-
+-	/* Not to mistake msdos disk map for PC-9800's empty disk map  */
+-	if (empty)
++	/* check for boot loader signatures */
++	if (!pc98_check_ipl_signature (&part_table))
+ 		return 0;
+ 
+ 	return 1;
+-- 
+1.7.6.4
+
diff --git a/parted-3.0-tests-add-tests-for-new-pc98-signatures-646053.patch b/parted-3.0-tests-add-tests-for-new-pc98-signatures-646053.patch
new file mode 100644
index 0000000..375d018
--- /dev/null
+++ b/parted-3.0-tests-add-tests-for-new-pc98-signatures-646053.patch
@@ -0,0 +1,75 @@
+From 3d39aaca84ce44e4108f214b76bf2b7a127a3ac2 Mon Sep 17 00:00:00 2001
+From: "Brian C. Lane" <bcl at redhat.com>
+Date: Fri, 7 Oct 2011 11:41:25 -0700
+Subject: [PATCH 6/6] tests: add tests for new pc98 signatures (#646053)
+
+ * tests/t2201-pc98-label-recog.sh: New file
+ * tests/Makefile.am: Add test
+---
+ tests/Makefile.am               |    1 +
+ tests/t2201-pc98-label-recog.sh |   41 +++++++++++++++++++++++++++++++++++++++
+ 2 files changed, 42 insertions(+), 0 deletions(-)
+ create mode 100755 tests/t2201-pc98-label-recog.sh
+
+diff --git a/tests/Makefile.am b/tests/Makefile.am
+index f507358..18a664b 100644
+--- a/tests/Makefile.am
++++ b/tests/Makefile.am
+@@ -23,6 +23,7 @@ TESTS = \
+   t1700-ext-probe.sh \
+   t2100-mkswap.sh \
+   t2200-dos-label-recog.sh \
++  t2201-pc98-label-recog.sh \
+   t2300-dos-label-extended-bootcode.sh \
+   t2310-dos-extended-2-sector-min-offset.sh \
+   t2400-dos-hfs-partition-type.sh \
+diff --git a/tests/t2201-pc98-label-recog.sh b/tests/t2201-pc98-label-recog.sh
+new file mode 100755
+index 0000000..6228159
+--- /dev/null
++++ b/tests/t2201-pc98-label-recog.sh
+@@ -0,0 +1,41 @@
++#!/bin/sh
++# Recognize PC98 labeled disks
++
++# Copyright (C) 2011 Free Software Foundation, Inc.
++
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 3 of the License, or
++# (at your option) any later version.
++
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program.  If not, see <http://www.gnu.org/licenses/>.
++
++. "${srcdir=.}/init.sh"; path_prepend_ ../parted
++
++require_512_byte_sector_size_
++
++ss=$sector_size_
++N=8192
++dev=loop-file
++
++# create a file to simulate the underlying device
++dd if=/dev/null of=$dev bs=$ss seek=$N 2> /dev/null || fail=1
++
++# label the test disk
++parted -s $dev mklabel pc98 > out 2>&1 || fail=1
++compare out /dev/null || fail=1 # expect no output
++
++parted -s $dev p | grep "^Partition Table: pc98" || fail=1
++
++for s in "Linux 98" "GRUB/98 "; do
++    printf "$s" | dd bs=1c seek=4 of=$dev conv=notrunc || fail=1
++    parted -s $dev p | grep "^Partition Table: pc98" || fail=1
++done
++
++Exit $fail
+-- 
+1.7.6.4
+
diff --git a/parted.spec b/parted.spec
index 22fad2f..e8dec5d 100644
--- a/parted.spec
+++ b/parted.spec
@@ -4,7 +4,7 @@
 Summary: The GNU disk partition manipulation program
 Name:    parted
 Version: 2.3
-Release: 10%{?dist}
+Release: 11%{?dist}
 License: GPLv3+
 Group:   Applications/System
 URL:     http://www.gnu.org/software/parted
@@ -31,6 +31,11 @@ Patch7: parted-2.3-Add-GPT-partition-attribute-bits.patch
 Patch8: parted-2.3-Add-legacy_boot-flag-for-GPT-parititons.patch
 Patch9: parted-2.3-Remove-PED_ASSERT-from-dos-geometry-checking.patch
 Patch10: parted-2.3-dasd-part.patch
+Patch11: parted-3.0-libparted-Fix-a-bug-in-the-hfs-probe-functions-71475.patch
+Patch12: parted-3.0-libparted-make-pc98-detection-depend-on-signatures.patch
+Patch13: parted-3.0-tests-add-tests-for-new-pc98-signatures-646053.patch
+Patch14: parted-2.3-patch-makefile.in-for-new-tests.patch
+Patch15: parted-3.0-change-test-library-init-for-new-tests.patch
 
 Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: e2fsprogs-devel
@@ -85,7 +90,7 @@ git commit -a -m "run iconv"
 
 %build
 CFLAGS="$RPM_OPT_FLAGS -Wno-unused-but-set-variable"; export CFLAGS
-%configure --enable-selinux --disable-static
+%configure --enable-selinux --disable-static --disable-Werror
 # Don't use rpath!
 %{__sed} -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
 %{__sed} -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
@@ -156,6 +161,12 @@ fi
 
 
 %changelog
+* Tue Oct 11 2011 Brian C. Lane <bcl at redhat.com> - 2.3-11
+- Fix bug in hfs probe code (#714758)
+- Make pc98 detection depend on specific signatures (#646053)
+- Remove -Werror
+- Patch the test/Makefile.in to add the new tests
+
 * Mon Jul 25 2011 Dan Horák <dan[at]danny.cz> - 2.3-10
 - Add patch to allow reread of partitions with DASD disks (#651478, #693764)
 
diff --git a/parted/2.3/11.fc15/build.log b/parted/2.3/11.fc15/build.log
new file mode 100644
index 0000000..a0fefbf
--- /dev/null
+++ b/parted/2.3/11.fc15/build.log
@@ -0,0 +1,3400 @@
+Mock Version: 1.1.15
+ENTER do(['bash', '--login', '-c', 'rpmbuild -bs --target x86_64 --nodeps builddir/build/SPECS/parted.spec'], False, '/extra/redhat/mock/fedora-15-x86_64/root/', None, 0, True, False, 500, 473, None, logger=<mockbuild.trace_decorator.getLog object at 0x155aed0>)
+Executing command: ['bash', '--login', '-c', 'rpmbuild -bs --target x86_64 --nodeps builddir/build/SPECS/parted.spec']
+Building target platforms: x86_64
+Building for target x86_64
+Wrote: /builddir/build/SRPMS/parted-2.3-11.fc15.src.rpm
+Child returncode was: 0
+LEAVE do --> 
+
+ENTER do(['bash', '--login', '-c', 'rpmbuild -bb --target x86_64 --nodeps builddir/build/SPECS/parted.spec'], False, '/extra/redhat/mock/fedora-15-x86_64/root/', None, 0, True, False, 500, 473, None, logger=<mockbuild.trace_decorator.getLog object at 0x155aed0>)
+Executing command: ['bash', '--login', '-c', 'rpmbuild -bb --target x86_64 --nodeps builddir/build/SPECS/parted.spec']
+Building target platforms: x86_64
+Building for target x86_64
+Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.oUl8gE
++ umask 022
++ cd /builddir/build/BUILD
++ LANG=C
++ export LANG
++ unset DISPLAY
++ cd /builddir/build/BUILD
++ rm -rf parted-2.3
++ /usr/bin/xz -dc /builddir/build/SOURCES/parted-2.3.tar.xz
++ /bin/tar -xf -
++ STATUS=0
++ '[' 0 -ne 0 ']'
++ cd parted-2.3
++ /bin/chmod -Rf a+rX,u+w,g-w,o-w .
++ gpg --import /builddir/build/SOURCES/pubkey.jim.meyering
+gpg: directory `/builddir/.gnupg' created
+gpg: new configuration file `/builddir/.gnupg/gpg.conf' created
+gpg: WARNING: options in `/builddir/.gnupg/gpg.conf' are not yet active during this run
+gpg: keyring `/builddir/.gnupg/secring.gpg' created
+gpg: keyring `/builddir/.gnupg/pubring.gpg' created
+gpg: /builddir/.gnupg/trustdb.gpg: trustdb created
+gpg: key D333CBA1: public key "Jim Meyering <jim at meyering.net>" imported
+gpg: Total number processed: 1
+gpg:               imported: 1
+gpg: no ultimately trusted keys found
++ gpg --verify /builddir/build/SOURCES/parted-2.3.tar.xz.sig /builddir/build/SOURCES/parted-2.3.tar.xz
+gpg: Signature made Fri May 28 11:40:23 2010 PDT using RSA key ID B9AB9A16
+gpg: Good signature from "Jim Meyering <jim at meyering.net>"
+gpg:                 aka "Jim Meyering <meyering at gnu.org>"
+gpg:                 aka "Jim Meyering <meyering at pobox.com>"
+gpg:                 aka "Jim Meyering <meyering at ascend.com>"
+gpg:                 aka "Jim Meyering <meyering at lucent.com>"
+gpg:                 aka "Jim Meyering <meyering at redhat.com>"
+gpg:                 aka "Jim Meyering <meyering at na-net.ornl.gov>"
+gpg: WARNING: This key is not certified with a trusted signature!
+gpg:          There is no indication that the signature belongs to the owner.
+Primary key fingerprint: D70D 9D25 AF38 37A5 909A  4683 FDD2 DEAC D333 CBA1
+     Subkey fingerprint: 775E 8866 695B 180C D94C  B471 D77F FDE1 B9AB 9A16
++ git init
+Initialized empty Git repository in /builddir/build/BUILD/parted-2.3/.git/
++ git config user.email parted-owner at fedoraproject.org
++ git config user.name 'Fedora Ninjas'
++ git add .
++ git commit -a -q -m '2.3 baseline.'
++ git am /builddir/build/SOURCES/parted-2.2-hi-major-sd-rh611691.patch /builddir/build/SOURCES/parted-2.3-lpn.patch /builddir/build/SOURCES/parted-2.3-mac-logical-sector-size.patch /builddir/build/SOURCES/parted-2.3-Document-align-check-642476.patch /builddir/build/SOURCES/parted-2.3-default-to-1MiB-alignment-when-possible.patch /builddir/build/SOURCES/parted-2.3-remove-dev_t_dep-news.patch /builddir/build/SOURCES/parted-2.3-remove-dev_t_dep.patch /builddir/build/SOURCES/parted-2.3-Add-GPT-partition-attribute-bits.patch /builddir/build/SOURCES/parted-2.3-Add-legacy_boot-flag-for-GPT-parititons.patch /builddir/build/SOURCES/parted-2.3-Remove-PED_ASSERT-from-dos-geometry-checking.patch /builddir/build/SOURCES/parted-2.3-dasd-part.patch /builddir/build/SOURCES/parted-2.3-gpt-avoid-division-by-zero.patch /builddir/build/SOURCES/parted-2.3-maint-rename-a-variable.patch /builddir/build/SOURCES/parted-3.0-gpt-don-t-abort-for-a-truncated-GPT-formatted-device.patch /builddir/build/SO
 URCES/parted-3.0-libparted-Fix-a-bug-in-the-hfs-probe-functions-71475.patch /builddir/build/SOURCES/parted-3.0-libparted-make-pc98-detection-depend-on-signatures.patch /builddir/build/SOURCES/parted-3.0-tests-add-tests-for-new-pc98-signatures-646053.patch /builddir/build/SOURCES/parted-2.3-patch-makefile.in-for-new-tests.patch
+Applying: Recognize devices with major number 128,129,...135 as SCSI
+Applying: Handle syncing partition changes when using blkext majors (#634980)
+Applying: Improve support for mac partition tables with logical sector size != 512
+Applying: Document align-check (#642476)
+Applying: default to 1MiB alignment when possible
+Applying: tests: add a NEWS entry and a test to exercise today's bug fix
+Applying: linux: also detect "in-use" dmraid and scsi-Nth (N>=16) partitions
+Applying: Add GPT partition attribute bits
+Applying: Add legacy_boot flag for GPT parititons
+Applying: Remove PED_ASSERT from dos geometry checking
+Applying: Remove DASD restriction on _disk_sync_part_table (#651478)
+Applying: gpt: avoid division by zero
+Applying: maint: rename a variable
+Applying: gpt: don't abort for a truncated GPT-formatted device
+Applying: libparted: Fix a bug in the hfs probe functions (#714758)
+Applying: libparted: make pc98 detection depend on signatures (#646053)
+Applying: tests: add tests for new pc98 signatures (#646053)
+Applying: Patch Makefile.in for new tests
++ iconv -f ISO-8859-1 -t UTF8 AUTHORS
++ touch -r AUTHORS tmp
++ mv tmp AUTHORS
++ git commit -a -m 'run iconv'
+[master bada7e7] run iconv
+ 1 files changed, 4 insertions(+), 4 deletions(-)
++ exit 0
+Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.GFUu5B
++ umask 022
++ cd /builddir/build/BUILD
++ cd parted-2.3
++ LANG=C
++ export LANG
++ unset DISPLAY
++ CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable'
++ export CFLAGS
++ CFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable'
++ export CFLAGS
++ CXXFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'
++ export CXXFLAGS
++ FFLAGS='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/lib64/gfortran/modules'
++ export FFLAGS
++ ./configure --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-selinux --disable-static --disable-Werror
+checking for a BSD-compatible install... /usr/bin/install -c
+checking whether build environment is sane... yes
+checking for a thread-safe mkdir -p... /bin/mkdir -p
+checking for gawk... gawk
+checking whether make sets $(MAKE)... yes
+checking build system type... x86_64-unknown-linux-gnu
+checking host system type... x86_64-unknown-linux-gnu
+checking for style of include used by make... GNU
+checking for x86_64-unknown-linux-gnu-gcc... no
+checking for gcc... gcc
+checking whether the C compiler works... yes
+checking for C compiler default output file name... a.out
+checking for suffix of executables... 
+checking whether we are cross compiling... no
+checking for suffix of object files... o
+checking whether we are using the GNU C compiler... yes
+checking whether gcc accepts -g... yes
+checking for gcc option to accept ISO C89... none needed
+checking dependency style of gcc... none
+checking for library containing strerror... none required
+checking for x86_64-unknown-linux-gnu-gcc... gcc
+checking whether we are using the GNU C compiler... (cached) yes
+checking whether gcc accepts -g... (cached) yes
+checking for gcc option to accept ISO C89... (cached) none needed
+checking dependency style of gcc... (cached) none
+checking how to run the C preprocessor... gcc -E
+checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking whether gcc needs -traditional... no
+checking whether gcc and cc understand -c and -o together... yes
+checking for x86_64-unknown-linux-gnu-ranlib... no
+checking for ranlib... ranlib
+checking for ANSI C header files... yes
+checking for sys/types.h... yes
+checking for sys/stat.h... yes
+checking for stdlib.h... yes
+checking for string.h... yes
+checking for memory.h... yes
+checking for strings.h... yes
+checking for inttypes.h... yes
+checking for stdint.h... yes
+checking for unistd.h... yes
+checking minix/config.h usability... no
+checking minix/config.h presence... no
+checking for minix/config.h... no
+checking whether it is safe to define __EXTENSIONS__... yes
+checking for gcc option to accept ISO C99... -std=gnu99
+checking for gcc -std=gnu99 option to accept ISO Standard C... (cached) -std=gnu99
+checking for a usable (O_DIRECT-supporting) temporary dir... .
+checking for special C compiler options needed for large files... no
+checking for _FILE_OFFSET_BITS value needed for large files... no
+checking for working alloca.h... yes
+checking for alloca... yes
+checking whether <wchar.h> uses 'inline' correctly... yes
+checking for btowc... yes
+checking for canonicalize_file_name... yes
+checking for getcwd... yes
+checking for readlink... yes
+checking for realpath... yes
+checking for __fpending... yes
+checking for fsync... yes
+checking for gettimeofday... yes
+checking for lstat... yes
+checking for mbsinit... yes
+checking for mbrtowc... yes
+checking for mprotect... yes
+checking for memchr... yes
+checking for mkstemp... yes
+checking for nl_langinfo... yes
+checking for pathconf... yes
+checking for isblank... yes
+checking for iswctype... yes
+checking for wcscoll... yes
+checking for sleep... yes
+checking for strdup... yes
+checking for strndup... yes
+checking for usleep... yes
+checking for wcrtomb... yes
+checking for iswcntrl... yes
+checking for iswblank... yes
+checking for dup2... yes
+checking for setenv... yes
+checking for symlink... yes
+checking for wctob... yes
+checking for nl_langinfo and CODESET... yes
+checking for a traditional french locale... fr_FR
+checking for size_t... yes
+checking whether malloc, realloc, calloc are POSIX compliant... yes
+checking whether // is distinct from /... no
+checking whether realpath works... yes
+checking for sys/param.h... yes
+checking for errno.h... yes
+checking for stdio_ext.h... yes
+checking for getopt.h... yes
+checking for sys/time.h... yes
+checking for stdint.h... (cached) yes
+checking for wchar.h... yes
+checking for inttypes.h... (cached) yes
+checking for langinfo.h... yes
+checking for sys/mman.h... yes
+checking for locale.h... yes
+checking for stdarg.h... yes
+checking for stddef.h... yes
+checking for stdio.h... yes
+checking for stdlib.h... (cached) yes
+checking for sys/socket.h... yes
+checking for string.h... (cached) yes
+checking for sys/stat.h... (cached) yes
+checking for time.h... yes
+checking for unistd.h... (cached) yes
+checking for wctype.h... yes
+checking for fcntl.h... yes
+checking for priv.h... no
+checking for blkid/blkid.h... yes
+checking whether system is Windows or MSDOS... no
+checking whether the preprocessor supports include_next... yes
+checking for complete errno.h... yes
+checking whether strerror_r is declared... yes
+checking for strerror_r... yes
+checking whether strerror_r returns char *... yes
+checking for inline... inline
+checking for getopt.h... (cached) yes
+checking for getopt_long_only... yes
+checking whether optreset is declared... no
+checking whether getopt_clip is declared... no
+checking whether getopt is POSIX compatible... yes
+checking for working GNU getopt function... yes
+checking whether getenv is declared... yes
+checking for C/C++ restrict keyword... __restrict
+checking for struct timeval... yes
+checking whether gettimeofday is declared without a macro... yes
+checking for long long int... yes
+checking for unsigned long long int... yes
+checking whether stdint.h conforms to C99... yes
+checking for inttypes.h... (cached) yes
+checking whether the inttypes.h PRIxNN macros are broken... no
+checking whether imaxabs is declared... yes
+checking whether imaxdiv is declared... yes
+checking whether strtoimax is declared... yes
+checking whether strtoumax is declared... yes
+checking for working fcntl.h... yes
+checking whether getc_unlocked is declared... yes
+checking whether we are using the GNU C Library 2.1 or newer... yes
+checking whether lstat correctly handles trailing slash... yes
+checking for stdlib.h... (cached) yes
+checking for GNU libc compatible malloc... yes
+checking for mbstate_t... yes
+checking for a traditional japanese locale... ja_JP
+checking for a transitional chinese locale... zh_CN.GB18030
+checking for a french Unicode locale... fr_FR.UTF-8
+checking for mmap... yes
+checking for MAP_ANONYMOUS... yes
+checking whether memchr works... yes
+checking for ssize_t... yes
+checking for stdbool.h that conforms to C99... yes
+checking for _Bool... yes
+checking for wchar_t... yes
+checking whether C symbols are prefixed with underscore at the linker level... no
+checking whether strdup is declared... yes
+checking for working strerror function... yes
+checking whether memmem is declared without a macro... yes
+checking whether mempcpy is declared without a macro... yes
+checking whether memrchr is declared without a macro... yes
+checking whether rawmemchr is declared without a macro... yes
+checking whether stpcpy is declared without a macro... yes
+checking whether stpncpy is declared without a macro... yes
+checking whether strchrnul is declared without a macro... yes
+checking whether strdup is declared without a macro... yes
+checking whether strncat is declared without a macro... yes
+checking whether strndup is declared without a macro... yes
+checking whether strnlen is declared without a macro... yes
+checking whether strpbrk is declared without a macro... yes
+checking whether strsep is declared without a macro... yes
+checking whether strcasestr is declared without a macro... yes
+checking whether strtok_r is declared without a macro... yes
+checking whether strsignal is declared without a macro... yes
+checking whether strverscmp is declared without a macro... yes
+checking whether strndup is declared... (cached) yes
+checking whether strnlen is declared... (cached) yes
+checking whether stat file-mode macros are broken... no
+checking for struct timespec in <time.h>... yes
+checking for wint_t... yes
+checking if environ is properly declared... yes
+checking for mode_t... yes
+checking for promoted mode_t type... mode_t
+checking whether setenv validates arguments... yes
+checking search.h usability... yes
+checking search.h presence... yes
+checking for search.h... yes
+checking for tsearch... yes
+checking whether alarm is declared... yes
+checking for alloca as a compiler built-in... yes
+checking whether to enable assertions... yes
+checking whether btowc(0) is correct... yes
+checking whether btowc(EOF) is correct... yes
+checking for GNU libc compatible calloc... yes
+checking whether // is distinct from /... (cached) no
+checking for error_at_line... yes
+checking whether __fpending is declared... yes
+checking whether gettimeofday clobbers localtime buffer... no
+checking for gettimeofday with POSIX signature... almost
+checking whether the compiler generally respects inline... yes
+checking whether inttypes.h conforms to C99... yes
+checking whether INT32_MAX < INTMAX_MAX... yes
+checking whether INT64_MAX == LONG_MAX... yes
+checking whether UINT32_MAX < UINTMAX_MAX... yes
+checking whether UINT64_MAX == ULONG_MAX... yes
+checking whether imaxabs is declared without a macro... yes
+checking whether imaxdiv is declared without a macro... yes
+checking whether strtoimax is declared without a macro... yes
+checking whether strtoumax is declared without a macro... yes
+checking whether langinfo.h defines CODESET... yes
+checking whether langinfo.h defines ERA... yes
+checking whether nl_langinfo is declared without a macro... yes
+checking for C compiler flag to ignore unused libraries... -Wl,--as-needed
+checking whether lseek detects pipes... yes
+checking for stdlib.h... (cached) yes
+checking for GNU libc compatible malloc... (cached) yes
+checking whether mbrtowc handles incomplete characters... yes
+checking whether mbrtowc works as well as mbtowc... yes
+checking whether mbrtowc handles a NULL string argument... yes
+checking whether mbrtowc has a correct return value... yes
+checking whether mbrtowc returns 0 when parsing a NUL character... yes
+checking whether mbrtowc handles incomplete characters... (cached) yes
+checking whether mbrtowc works as well as mbtowc... (cached) yes
+checking for working mkstemp... yes
+checking whether program_invocation_name is declared... yes
+checking whether program_invocation_short_name is declared... yes
+checking whether readlink signature is correct... yes
+checking whether readlink handles trailing slash correctly... yes
+checking for stdlib.h... (cached) yes
+checking for GNU libc compatible realloc... yes
+checking for working re_compile_pattern... no
+checking libintl.h usability... yes
+checking libintl.h presence... yes
+checking for libintl.h... yes
+checking whether isblank is declared... yes
+checking for rpmatch... yes
+checking whether sleep is declared... yes
+checking for working sleep... yes
+checking for ssize_t... (cached) yes
+checking whether stat handles trailing slashes on directories... yes
+checking whether stat handles trailing slashes on files... yes
+checking for va_copy... yes
+checking whether NULL can be used in arbitrary expressions... yes
+checking whether stdint.h conforms to C99... (cached) yes
+checking whether dprintf is declared without a macro... yes
+checking whether fpurge is declared without a macro... no
+checking whether fseeko is declared without a macro... yes
+checking whether ftello is declared without a macro... yes
+checking whether getdelim is declared without a macro... yes
+checking whether getline is declared without a macro... yes
+checking whether popen is declared without a macro... yes
+checking whether renameat is declared without a macro... yes
+checking whether snprintf is declared without a macro... yes
+checking whether tmpfile is declared without a macro... yes
+checking whether vdprintf is declared without a macro... yes
+checking whether vsnprintf is declared without a macro... yes
+checking for random.h... no
+checking for struct random_data... yes
+checking whether atoll is declared without a macro... yes
+checking whether canonicalize_file_name is declared without a macro... yes
+checking whether getloadavg is declared without a macro... yes
+checking whether getsubopt is declared without a macro... yes
+checking whether grantpt is declared without a macro... yes
+checking whether mkdtemp is declared without a macro... yes
+checking whether mkostemp is declared without a macro... yes
+checking whether mkostemps is declared without a macro... yes
+checking whether mkstemp is declared without a macro... yes
+checking whether mkstemps is declared without a macro... yes
+checking whether ptsname is declared without a macro... yes
+checking whether random_r is declared without a macro... yes
+checking whether initstat_r is declared without a macro... no
+checking whether srandom_r is declared without a macro... yes
+checking whether setstate_r is declared without a macro... yes
+checking whether realpath is declared without a macro... yes
+checking whether rpmatch is declared without a macro... yes
+checking whether setenv is declared without a macro... yes
+checking whether strtod is declared without a macro... yes
+checking whether strtoll is declared without a macro... yes
+checking whether strtoull is declared without a macro... yes
+checking whether unlockpt is declared without a macro... yes
+checking whether unsetenv is declared without a macro... yes
+checking for working strndup... yes
+checking for working strnlen... yes
+checking for nlink_t... yes
+checking whether fchmodat is declared without a macro... yes
+checking whether fstatat is declared without a macro... yes
+checking whether futimens is declared without a macro... yes
+checking whether lchmod is declared without a macro... yes
+checking whether lstat is declared without a macro... yes
+checking whether mkdirat is declared without a macro... yes
+checking whether mkfifo is declared without a macro... yes
+checking whether mkfifoat is declared without a macro... yes
+checking whether mknod is declared without a macro... yes
+checking whether mknodat is declared without a macro... yes
+checking whether stat is declared without a macro... yes
+checking whether utimensat is declared without a macro... yes
+checking whether chown is declared without a macro... yes
+checking whether dup2 is declared without a macro... yes
+checking whether dup3 is declared without a macro... yes
+checking whether environ is declared without a macro... yes
+checking whether euidaccess is declared without a macro... yes
+checking whether faccessat is declared without a macro... yes
+checking whether fchdir is declared without a macro... yes
+checking whether fchownat is declared without a macro... yes
+checking whether fsync is declared without a macro... yes
+checking whether ftruncate is declared without a macro... yes
+checking whether getcwd is declared without a macro... yes
+checking whether getdomainname is declared without a macro... yes
+checking whether getdtablesize is declared without a macro... yes
+checking whether getgroups is declared without a macro... yes
+checking whether gethostname is declared without a macro... yes
+checking whether getlogin is declared without a macro... yes
+checking whether getlogin_r is declared without a macro... yes
+checking whether getpagesize is declared without a macro... yes
+checking whether getusershell is declared without a macro... yes
+checking whether setusershell is declared without a macro... yes
+checking whether endusershell is declared without a macro... yes
+checking whether lchown is declared without a macro... yes
+checking whether link is declared without a macro... yes
+checking whether linkat is declared without a macro... yes
+checking whether lseek is declared without a macro... yes
+checking whether pipe2 is declared without a macro... yes
+checking whether pread is declared without a macro... yes
+checking whether pwrite is declared without a macro... yes
+checking whether readlink is declared without a macro... yes
+checking whether readlinkat is declared without a macro... yes
+checking whether rmdir is declared without a macro... yes
+checking whether sleep is declared without a macro... yes
+checking whether symlink is declared without a macro... yes
+checking whether symlinkat is declared without a macro... yes
+checking whether ttyname_r is declared without a macro... yes
+checking whether unlink is declared without a macro... yes
+checking whether unlinkat is declared without a macro... yes
+checking whether usleep is declared without a macro... yes
+checking whether unlink honors trailing slashes... yes
+checking whether unlink of a parent directory fails is it should... guessing yes
+checking for useconds_t... yes
+checking whether usleep allows large arguments... yes
+checking whether btowc is declared without a macro... yes
+checking whether wctob is declared without a macro... yes
+checking whether mbsinit is declared without a macro... yes
+checking whether mbrtowc is declared without a macro... yes
+checking whether mbrlen is declared without a macro... yes
+checking whether mbsrtowcs is declared without a macro... yes
+checking whether mbsnrtowcs is declared without a macro... yes
+checking whether wcrtomb is declared without a macro... yes
+checking whether wcsrtombs is declared without a macro... yes
+checking whether wcsnrtombs is declared without a macro... yes
+checking whether wcwidth is declared without a macro... yes
+checking whether mbrtowc handles incomplete characters... (cached) yes
+checking whether mbrtowc works as well as mbtowc... (cached) yes
+checking whether wcrtomb return value is correct... yes
+checking whether iswcntrl works... yes
+checking for a traditional french locale... (cached) fr_FR
+checking for a french Unicode locale... (cached) fr_FR.UTF-8
+checking for a traditional french locale... (cached) fr_FR
+checking for a turkish Unicode locale... tr_TR.UTF-8
+checking whether dup2 works... yes
+checking whether fcntl is declared without a macro... yes
+checking whether openat is declared without a macro... yes
+checking for a traditional french locale... (cached) fr_FR
+checking for a french Unicode locale... (cached) fr_FR.UTF-8
+checking for a traditional japanese locale... (cached) ja_JP
+checking for a transitional chinese locale... (cached) zh_CN.GB18030
+checking for a french Unicode locale... (cached) fr_FR.UTF-8
+checking for a traditional french locale... (cached) fr_FR
+checking for a french Unicode locale... (cached) fr_FR.UTF-8
+checking whether open recognizes a trailing slash... yes
+checking for getppriv... no
+checking for putenv compatible with GNU and SVID... yes
+checking for a traditional french locale... (cached) fr_FR
+checking for a french Unicode locale... (cached) fr_FR.UTF-8
+checking for wchar_t... (cached) yes
+checking for wint_t... (cached) yes
+checking whether symlink handles trailing slash correctly... yes
+checking for unsetenv... yes
+checking for unsetenv() return type... int
+checking whether unsetenv works on duplicates... yes
+checking for a traditional french locale... (cached) fr_FR
+checking for a french Unicode locale... (cached) fr_FR.UTF-8
+checking for a traditional japanese locale... (cached) ja_JP
+checking for a transitional chinese locale... (cached) zh_CN.GB18030
+checking whether wctob works... yes
+checking whether wctob is declared... (cached) yes
+checking size of off_t... 8
+checking how to print strings... printf
+checking for a sed that does not truncate output... /bin/sed
+checking for fgrep... /bin/grep -F
+checking for ld used by gcc -std=gnu99... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
+checking the name lister (/usr/bin/nm -B) interface... BSD nm
+checking whether ln -s works... yes
+checking the maximum length of command line arguments... 1572864
+checking whether the shell understands some XSI constructs... yes
+checking whether the shell understands "+="... yes
+checking for /usr/bin/ld option to reload object files... -r
+checking for x86_64-unknown-linux-gnu-objdump... no
+checking for objdump... objdump
+checking how to recognize dependent libraries... pass_all
+checking for x86_64-unknown-linux-gnu-ar... no
+checking for ar... ar
+checking for x86_64-unknown-linux-gnu-strip... no
+checking for strip... strip
+checking for x86_64-unknown-linux-gnu-ranlib... ranlib
+checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object... ok
+checking for dlfcn.h... yes
+checking for objdir... .libs
+checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions... no
+checking for gcc -std=gnu99 option to produce PIC... -fPIC -DPIC
+checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works... yes
+checking if gcc -std=gnu99 static flag -static works... no
+checking if gcc -std=gnu99 supports -c -o file.o... yes
+checking if gcc -std=gnu99 supports -c -o file.o... (cached) yes
+checking whether the gcc -std=gnu99 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
+checking whether -lc should be explicitly linked in... no
+checking dynamic linker characteristics... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether stripping libraries is possible... yes
+checking if libtool supports shared libraries... yes
+checking whether to build shared libraries... yes
+checking whether to build static libraries... no
+checking whether NLS is requested... yes
+checking for msgfmt... /usr/bin/msgfmt
+checking for gmsgfmt... /usr/bin/msgfmt
+checking for xgettext... /usr/bin/xgettext
+checking for msgmerge... /usr/bin/msgmerge
+checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
+checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
+checking for shared library run path origin... done
+checking for CFPreferencesCopyAppValue... no
+checking for CFLocaleCopyCurrent... no
+checking for GNU gettext in libc... yes
+checking whether to use NLS... yes
+checking where the gettext function comes from... libc
+checking for dlopen in -ldl... yes
+checking for uuid_generate in -luuid... yes
+checking for dm_task_create in -ldevmapper... yes
+checking for library containing tgetent... -ltinfo
+checking for readline in -lreadline... yes
+checking for rl_variable_value in -lreadline... yes
+checking uuid/uuid.h usability... yes
+checking uuid/uuid.h presence... yes
+checking for uuid/uuid.h... yes
+checking for getopt.h... (cached) yes
+checking linux/unistd.h usability... yes
+checking linux/unistd.h presence... yes
+checking for linux/unistd.h... yes
+checking readline/readline.h usability... yes
+checking readline/readline.h presence... yes
+checking for readline/readline.h... yes
+checking readline/history.h usability... yes
+checking readline/history.h presence... yes
+checking for readline/history.h... yes
+checking termcap.h usability... yes
+checking termcap.h presence... yes
+checking for termcap.h... yes
+checking for wctype.h... (cached) yes
+checking execinfo.h usability... yes
+checking execinfo.h presence... yes
+checking for execinfo.h... yes
+checking for backtrace in -lc... yes
+checking for x86_64-unknown-linux-gnu-pkg-config... no
+checking for pkg-config... /usr/bin/pkg-config
+checking pkg-config is at least version 0.9.0... yes
+checking for CHECK... no
+Unable to locate check version 0.9.3 or higher: not building
+checking for ld used by gcc -std=gnu99... (cached) /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
+checking whether byte ordering is bigendian... no
+checking for inline... (cached) inline
+checking for an ANSI C-conforming const... yes
+checking for C/C++ restrict keyword... (cached) __restrict
+checking for sigaction... yes
+checking for getuid... yes
+checking for rl_completion_matches... yes
+checking for canonicalize_file_name... (cached) yes
+checking for library containing blkid_probe_get_topology... -lblkid
+checking for blkid_probe_get_topology... yes
+configure: creating ./config.status
+config.status: creating Makefile
+config.status: creating lib/Makefile
+config.status: creating include/Makefile
+config.status: creating include/parted/Makefile
+config.status: creating libparted/Makefile
+config.status: creating libparted/labels/Makefile
+config.status: creating libparted/fs/Makefile
+config.status: creating libparted/fs/amiga/Makefile
+config.status: creating libparted/fs/ext2/Makefile
+config.status: creating libparted/fs/fat/Makefile
+config.status: creating libparted/fs/hfs/Makefile
+config.status: creating libparted/fs/jfs/Makefile
+config.status: creating libparted/fs/linux_swap/Makefile
+config.status: creating libparted/fs/ntfs/Makefile
+config.status: creating libparted/fs/reiserfs/Makefile
+config.status: creating libparted/fs/ufs/Makefile
+config.status: creating libparted/fs/xfs/Makefile
+config.status: creating libparted/tests/Makefile
+config.status: creating libparted.pc
+config.status: creating parted/Makefile
+config.status: creating partprobe/Makefile
+config.status: creating doc/Makefile
+config.status: creating doc/C/Makefile
+config.status: creating doc/pt_BR/Makefile
+config.status: creating debug/Makefile
+config.status: creating debug/clearfat/Makefile
+config.status: creating debug/test/Makefile
+config.status: creating tests/Makefile
+config.status: creating po/Makefile.in
+config.status: creating lib/config.h
+config.status: executing depfiles commands
+config.status: executing libtool commands
+config.status: executing po-directories commands
+config.status: creating po/POTFILES
+config.status: creating po/Makefile
+Type 'make' to compile parted.
++ /bin/sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
++ /bin/sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
++ V=1
++ /usr/bin/make -j8
+/usr/bin/make  all-recursive
+make[1]: Entering directory `/builddir/build/BUILD/parted-2.3'
+Making all in po
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/po'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/po'
+Making all in lib
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+rm -f alloca.h-t alloca.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  cat ./alloca.in.h; \
+} > alloca.h-t && \
+mv -f alloca.h-t alloca.h
+rm -f arg-nonnull.h-t arg-nonnull.h && \
+sed -n -e '/GL_ARG_NONNULL/,$p' \
+  < ../build-aux/arg-nonnull.h \
+  > arg-nonnull.h-t && \
+mv arg-nonnull.h-t arg-nonnull.h
+rm -f c++defs.h-t c++defs.h && \
+sed -n -e '/_GL_CXXDEFS/,$p' \
+  < ../build-aux/c++defs.h \
+  > c++defs.h-t && \
+mv c++defs.h-t c++defs.h
+rm -f configmake.h-t && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  echo '#define PREFIX "/usr"'; \
+  echo '#define EXEC_PREFIX "/usr"'; \
+  echo '#define BINDIR "/usr/bin"'; \
+  echo '#define SBINDIR "/sbin"'; \
+  echo '#define LIBEXECDIR "/usr/libexec"'; \
+  echo '#define DATAROOTDIR "/usr/share"'; \
+  echo '#define DATADIR "/usr/share"'; \
+  echo '#define SYSCONFDIR "/etc"'; \
+  echo '#define SHAREDSTATEDIR "/var/lib"'; \
+  echo '#define LOCALSTATEDIR "/var"'; \
+  echo '#define INCLUDEDIR "/usr/include"'; \
+  echo '#define OLDINCLUDEDIR "/usr/include"'; \
+  echo '#define DOCDIR "/usr/share/doc/parted"'; \
+  echo '#define INFODIR "/usr/share/info"'; \
+  echo '#define HTMLDIR "/usr/share/doc/parted"'; \
+  echo '#define DVIDIR "/usr/share/doc/parted"'; \
+  echo '#define PDFDIR "/usr/share/doc/parted"'; \
+  echo '#define PSDIR "/usr/share/doc/parted"'; \
+  echo '#define LIBDIR "/lib64"'; \
+  echo '#define LISPDIR ""'; \
+  echo '#define LOCALEDIR "/usr/share/locale"'; \
+  echo '#define MANDIR "/usr/share/man"'; \
+  echo '#define MANEXT ""'; \
+  echo '#define PKGDATADIR "/usr/share/parted"'; \
+  echo '#define PKGINCLUDEDIR "/usr/include/parted"'; \
+  echo '#define PKGLIBDIR "/lib64/parted"'; \
+  echo '#define PKGLIBEXECDIR "/usr/libexec/parted"'; \
+} | sed '/""/d' > configmake.h-t && \
+if test -f configmake.h && cmp configmake.h-t configmake.h > /dev/null; then \
+  rm -f configmake.h-t; \
+else \
+  rm -f configmake.h; mv configmake.h-t configmake.h; \
+fi
+rm -f warn-on-use.h-t warn-on-use.h && \
+sed -n -e '/^.ifndef/,$p' \
+  < ../build-aux/warn-on-use.h \
+  > warn-on-use.h-t && \
+mv warn-on-use.h-t warn-on-use.h
+rm -f inttypes.h-t inttypes.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  sed -e 's/@''HAVE_INTTYPES_H''@/1/g' \
+      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_INTTYPES_H''@|<inttypes.h>|g' \
+      -e 's/@''PRI_MACROS_BROKEN''@/0/g' \
+      -e 's/@''APPLE_UNIVERSAL_BUILD''@/0/g' \
+      -e 's/@''HAVE_LONG_LONG_INT''@/1/g' \
+      -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/1/g' \
+      -e 's/@''PRIPTR_PREFIX''@/"l"/g' \
+      -e 's/@''GNULIB_IMAXABS''@/0/g' \
+      -e 's/@''GNULIB_IMAXDIV''@/0/g' \
+      -e 's/@''GNULIB_STRTOIMAX''@/0/g' \
+      -e 's/@''GNULIB_STRTOUMAX''@/0/g' \
+      -e 's/@''HAVE_DECL_IMAXABS''@/1/g' \
+      -e 's/@''HAVE_DECL_IMAXDIV''@/1/g' \
+      -e 's/@''HAVE_DECL_STRTOIMAX''@/1/g' \
+      -e 's/@''HAVE_DECL_STRTOUMAX''@/1/g' \
+      -e 's/@''INT32_MAX_LT_INTMAX_MAX''@/1/g' \
+      -e 's/@''INT64_MAX_EQ_LONG_MAX''@/1/g' \
+      -e 's/@''UINT32_MAX_LT_UINTMAX_MAX''@/1/g' \
+      -e 's/@''UINT64_MAX_EQ_ULONG_MAX''@/1/g' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+      < ./inttypes.in.h; \
+} > inttypes.h-t && \
+mv inttypes.h-t inttypes.h
+rm -f langinfo.h-t langinfo.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  sed -e 's|@''HAVE_LANGINFO_H''@|1|g' \
+      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_LANGINFO_H''@|<langinfo.h>|g' \
+      -e 's|@''GNULIB_NL_LANGINFO''@|1|g' \
+      -e 's|@''HAVE_LANGINFO_CODESET''@|1|g' \
+      -e 's|@''HAVE_LANGINFO_ERA''@|1|g' \
+      -e 's|@''HAVE_NL_LANGINFO''@|1|g' \
+      -e 's|@''REPLACE_NL_LANGINFO''@|0|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+      < ./langinfo.in.h; \
+} > langinfo.h-t && \
+mv langinfo.h-t langinfo.h
+rm -f stdio.h-t stdio.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
+  sed -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_STDIO_H''@|<stdio.h>|g' \
+      -e 's|@''GNULIB_DPRINTF''@|0|g' \
+      -e 's|@''GNULIB_FCLOSE''@|1|g' \
+      -e 's|@''GNULIB_FFLUSH''@|0|g' \
+      -e 's|@''GNULIB_FOPEN''@|0|g' \
+      -e 's|@''GNULIB_FPRINTF''@|1|g' \
+      -e 's|@''GNULIB_FPRINTF_POSIX''@|0|g' \
+      -e 's|@''GNULIB_FPURGE''@|0|g' \
+      -e 's|@''GNULIB_FPUTC''@|1|g' \
+      -e 's|@''GNULIB_FPUTS''@|1|g' \
+      -e 's|@''GNULIB_FREOPEN''@|0|g' \
+      -e 's|@''GNULIB_FSEEK''@|0|g' \
+      -e 's|@''GNULIB_FSEEKO''@|0|g' \
+      -e 's|@''GNULIB_FTELL''@|0|g' \
+      -e 's|@''GNULIB_FTELLO''@|0|g' \
+      -e 's|@''GNULIB_FWRITE''@|1|g' \
+      -e 's|@''GNULIB_GETDELIM''@|0|g' \
+      -e 's|@''GNULIB_GETLINE''@|0|g' \
+      -e 's|@''GNULIB_OBSTACK_PRINTF''@|0|g' \
+      -e 's|@''GNULIB_OBSTACK_PRINTF_POSIX''@|0|g' \
+      -e 's|@''GNULIB_PERROR''@|0|g' \
+      -e 's|@''GNULIB_POPEN''@|0|g' \
+      -e 's|@''GNULIB_PRINTF''@|1|g' \
+      -e 's|@''GNULIB_PRINTF_POSIX''@|0|g' \
+      -e 's|@''GNULIB_PUTC''@|1|g' \
+      -e 's|@''GNULIB_PUTCHAR''@|1|g' \
+      -e 's|@''GNULIB_PUTS''@|1|g' \
+      -e 's|@''GNULIB_REMOVE''@|0|g' \
+      -e 's|@''GNULIB_RENAME''@|0|g' \
+      -e 's|@''GNULIB_RENAMEAT''@|0|g' \
+      -e 's|@''GNULIB_SNPRINTF''@|0|g' \
+      -e 's|@''GNULIB_SPRINTF_POSIX''@|0|g' \
+      -e 's|@''GNULIB_STDIO_H_SIGPIPE''@|0|g' \
+      -e 's|@''GNULIB_TMPFILE''@|0|g' \
+      -e 's|@''GNULIB_VASPRINTF''@|0|g' \
+      -e 's|@''GNULIB_VDPRINTF''@|0|g' \
+      -e 's|@''GNULIB_VFPRINTF''@|1|g' \
+      -e 's|@''GNULIB_VFPRINTF_POSIX''@|0|g' \
+      -e 's|@''GNULIB_VPRINTF''@|1|g' \
+      -e 's|@''GNULIB_VPRINTF_POSIX''@|0|g' \
+      -e 's|@''GNULIB_VSNPRINTF''@|0|g' \
+      -e 's|@''GNULIB_VSPRINTF_POSIX''@|0|g' \
+      < ./stdio.in.h | \
+  sed -e 's|@''HAVE_DECL_FPURGE''@|1|g' \
+      -e 's|@''HAVE_DECL_GETDELIM''@|1|g' \
+      -e 's|@''HAVE_DECL_GETLINE''@|1|g' \
+      -e 's|@''HAVE_DECL_OBSTACK_PRINTF''@|1|g' \
+      -e 's|@''HAVE_DECL_SNPRINTF''@|1|g' \
+      -e 's|@''HAVE_DECL_VSNPRINTF''@|1|g' \
+      -e 's|@''HAVE_DPRINTF''@|1|g' \
+      -e 's|@''HAVE_FSEEKO''@|1|g' \
+      -e 's|@''HAVE_FTELLO''@|1|g' \
+      -e 's|@''HAVE_RENAMEAT''@|1|g' \
+      -e 's|@''HAVE_VASPRINTF''@|1|g' \
+      -e 's|@''HAVE_VDPRINTF''@|1|g' \
+      -e 's|@''REPLACE_DPRINTF''@|0|g' \
+      -e 's|@''REPLACE_FCLOSE''@|0|g' \
+      -e 's|@''REPLACE_FFLUSH''@|0|g' \
+      -e 's|@''REPLACE_FOPEN''@|0|g' \
+      -e 's|@''REPLACE_FPRINTF''@|0|g' \
+      -e 's|@''REPLACE_FPURGE''@|0|g' \
+      -e 's|@''REPLACE_FREOPEN''@|0|g' \
+      -e 's|@''REPLACE_FSEEK''@|0|g' \
+      -e 's|@''REPLACE_FSEEKO''@|0|g' \
+      -e 's|@''REPLACE_FTELL''@|0|g' \
+      -e 's|@''REPLACE_FTELLO''@|0|g' \
+      -e 's|@''REPLACE_GETDELIM''@|0|g' \
+      -e 's|@''REPLACE_GETLINE''@|0|g' \
+      -e 's|@''REPLACE_OBSTACK_PRINTF''@|0|g' \
+      -e 's|@''REPLACE_PERROR''@|0|g' \
+      -e 's|@''REPLACE_POPEN''@|0|g' \
+      -e 's|@''REPLACE_PRINTF''@|0|g' \
+      -e 's|@''REPLACE_REMOVE''@|0|g' \
+      -e 's|@''REPLACE_RENAME''@|0|g' \
+      -e 's|@''REPLACE_RENAMEAT''@|0|g' \
+      -e 's|@''REPLACE_SNPRINTF''@|0|g' \
+      -e 's|@''REPLACE_SPRINTF''@|0|g' \
+      -e 's|@''REPLACE_STDIO_WRITE_FUNCS''@|0|g' \
+      -e 's|@''REPLACE_TMPFILE''@|0|g' \
+      -e 's|@''REPLACE_VASPRINTF''@|0|g' \
+      -e 's|@''REPLACE_VDPRINTF''@|0|g' \
+      -e 's|@''REPLACE_VFPRINTF''@|0|g' \
+      -e 's|@''REPLACE_VPRINTF''@|0|g' \
+      -e 's|@''REPLACE_VSNPRINTF''@|0|g' \
+      -e 's|@''REPLACE_VSPRINTF''@|0|g' \
+      -e 's|@''ASM_SYMBOL_PREFIX''@|""|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
+} > stdio.h-t && \
+mv stdio.h-t stdio.h
+rm -f stdlib.h-t stdlib.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
+  sed -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_STDLIB_H''@|<stdlib.h>|g' \
+      -e 's|@''GNULIB_ATOLL''@|0|g' \
+      -e 's|@''GNULIB_CALLOC_POSIX''@|1|g' \
+      -e 's|@''GNULIB_CANONICALIZE_FILE_NAME''@|1|g' \
+      -e 's|@''GNULIB_GETLOADAVG''@|0|g' \
+      -e 's|@''GNULIB_GETSUBOPT''@|0|g' \
+      -e 's|@''GNULIB_GRANTPT''@|0|g' \
+      -e 's|@''GNULIB_MALLOC_POSIX''@|1|g' \
+      -e 's|@''GNULIB_MKDTEMP''@|0|g' \
+      -e 's|@''GNULIB_MKOSTEMP''@|0|g' \
+      -e 's|@''GNULIB_MKOSTEMPS''@|0|g' \
+      -e 's|@''GNULIB_MKSTEMP''@|1|g' \
+      -e 's|@''GNULIB_MKSTEMPS''@|0|g' \
+      -e 's|@''GNULIB_PTSNAME''@|0|g' \
+      -e 's|@''GNULIB_PUTENV''@|IN_PARTED_GNULIB_TESTS|g' \
+      -e 's|@''GNULIB_RANDOM_R''@|0|g' \
+      -e 's|@''GNULIB_REALLOC_POSIX''@|1|g' \
+      -e 's|@''GNULIB_REALPATH''@|1|g' \
+      -e 's|@''GNULIB_RPMATCH''@|1|g' \
+      -e 's|@''GNULIB_SETENV''@|IN_PARTED_GNULIB_TESTS|g' \
+      -e 's|@''GNULIB_STRTOD''@|0|g' \
+      -e 's|@''GNULIB_STRTOLL''@|0|g' \
+      -e 's|@''GNULIB_STRTOULL''@|0|g' \
+      -e 's|@''GNULIB_UNLOCKPT''@|0|g' \
+      -e 's|@''GNULIB_UNSETENV''@|IN_PARTED_GNULIB_TESTS|g' \
+      -e 's|@''HAVE_ATOLL''@|1|g' \
+      -e 's|@''HAVE_CALLOC_POSIX''@|1|g' \
+      -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|1|g' \
+      -e 's|@''HAVE_DECL_GETLOADAVG''@|1|g' \
+      -e 's|@''HAVE_GETSUBOPT''@|1|g' \
+      -e 's|@''HAVE_GRANTPT''@|1|g' \
+      -e 's|@''HAVE_MALLOC_POSIX''@|1|g' \
+      -e 's|@''HAVE_MKDTEMP''@|1|g' \
+      -e 's|@''HAVE_MKOSTEMP''@|1|g' \
+      -e 's|@''HAVE_MKOSTEMPS''@|1|g' \
+      -e 's|@''HAVE_MKSTEMP''@|1|g' \
+      -e 's|@''HAVE_MKSTEMPS''@|1|g' \
+      -e 's|@''HAVE_PTSNAME''@|1|g' \
+      -e 's|@''HAVE_RANDOM_H''@|0|g' \
+      -e 's|@''HAVE_RANDOM_R''@|1|g' \
+      -e 's|@''HAVE_REALLOC_POSIX''@|1|g' \
+      -e 's|@''HAVE_REALPATH''@|1|g' \
+      -e 's|@''HAVE_RPMATCH''@|1|g' \
+      -e 's|@''HAVE_SETENV''@|1|g' \
+      -e 's|@''HAVE_STRTOD''@|1|g' \
+      -e 's|@''HAVE_STRTOLL''@|1|g' \
+      -e 's|@''HAVE_STRTOULL''@|1|g' \
+      -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|1|g' \
+      -e 's|@''HAVE_SYS_LOADAVG_H''@|0|g' \
+      -e 's|@''HAVE_UNLOCKPT''@|1|g' \
+      -e 's|@''HAVE_UNSETENV''@|1|g' \
+      -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|0|g' \
+      -e 's|@''REPLACE_MKSTEMP''@|0|g' \
+      -e 's|@''REPLACE_PUTENV''@|0|g' \
+      -e 's|@''REPLACE_REALPATH''@|0|g' \
+      -e 's|@''REPLACE_SETENV''@|0|g' \
+      -e 's|@''REPLACE_STRTOD''@|0|g' \
+      -e 's|@''REPLACE_UNSETENV''@|0|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+      < ./stdlib.in.h; \
+} > stdlib.h-t && \
+mv stdlib.h-t stdlib.h
+rm -f string.h-t string.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
+  sed -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_STRING_H''@|<string.h>|g' \
+      -e 's|@''GNULIB_MBSLEN''@|0|g' \
+      -e 's|@''GNULIB_MBSNLEN''@|0|g' \
+      -e 's|@''GNULIB_MBSCHR''@|0|g' \
+      -e 's|@''GNULIB_MBSRCHR''@|0|g' \
+      -e 's|@''GNULIB_MBSSTR''@|0|g' \
+      -e 's|@''GNULIB_MBSCASECMP''@|0|g' \
+      -e 's|@''GNULIB_MBSNCASECMP''@|0|g' \
+      -e 's|@''GNULIB_MBSPCASECMP''@|0|g' \
+      -e 's|@''GNULIB_MBSCASESTR''@|0|g' \
+      -e 's|@''GNULIB_MBSCSPN''@|0|g' \
+      -e 's|@''GNULIB_MBSPBRK''@|0|g' \
+      -e 's|@''GNULIB_MBSSPN''@|0|g' \
+      -e 's|@''GNULIB_MBSSEP''@|0|g' \
+      -e 's|@''GNULIB_MBSTOK_R''@|0|g' \
+      -e 's|@''GNULIB_MEMCHR''@|1|g' \
+      -e 's|@''GNULIB_MEMMEM''@|0|g' \
+      -e 's|@''GNULIB_MEMPCPY''@|0|g' \
+      -e 's|@''GNULIB_MEMRCHR''@|0|g' \
+      -e 's|@''GNULIB_RAWMEMCHR''@|0|g' \
+      -e 's|@''GNULIB_STPCPY''@|0|g' \
+      -e 's|@''GNULIB_STPNCPY''@|0|g' \
+      -e 's|@''GNULIB_STRCHRNUL''@|0|g' \
+      -e 's|@''GNULIB_STRDUP''@|1|g' \
+      -e 's|@''GNULIB_STRNCAT''@|0|g' \
+      -e 's|@''GNULIB_STRNDUP''@|1|g' \
+      -e 's|@''GNULIB_STRNLEN''@|1|g' \
+      -e 's|@''GNULIB_STRPBRK''@|0|g' \
+      -e 's|@''GNULIB_STRSEP''@|0|g' \
+      -e 's|@''GNULIB_STRSTR''@|0|g' \
+      -e 's|@''GNULIB_STRCASESTR''@|0|g' \
+      -e 's|@''GNULIB_STRTOK_R''@|0|g' \
+      -e 's|@''GNULIB_STRERROR''@|1|g' \
+      -e 's|@''GNULIB_STRSIGNAL''@|0|g' \
+      -e 's|@''GNULIB_STRVERSCMP''@|0|g' \
+      < ./string.in.h | \
+  sed -e 's|@''HAVE_MBSLEN''@|0|g' \
+      -e 's|@''HAVE_MEMCHR''@|1|g' \
+      -e 's|@''HAVE_DECL_MEMMEM''@|1|g' \
+      -e 's|@''HAVE_MEMPCPY''@|1|g' \
+      -e 's|@''HAVE_DECL_MEMRCHR''@|1|g' \
+      -e 's|@''HAVE_RAWMEMCHR''@|1|g' \
+      -e 's|@''HAVE_STPCPY''@|1|g' \
+      -e 's|@''HAVE_STPNCPY''@|1|g' \
+      -e 's|@''HAVE_STRCHRNUL''@|1|g' \
+      -e 's|@''HAVE_DECL_STRDUP''@|1|g' \
+      -e 's|@''HAVE_DECL_STRNDUP''@|1|g' \
+      -e 's|@''HAVE_DECL_STRNLEN''@|1|g' \
+      -e 's|@''HAVE_STRPBRK''@|1|g' \
+      -e 's|@''HAVE_STRSEP''@|1|g' \
+      -e 's|@''HAVE_STRCASESTR''@|1|g' \
+      -e 's|@''HAVE_DECL_STRTOK_R''@|1|g' \
+      -e 's|@''HAVE_DECL_STRSIGNAL''@|1|g' \
+      -e 's|@''HAVE_STRVERSCMP''@|1|g' \
+      -e 's|@''REPLACE_STPNCPY''@|0|g' \
+      -e 's|@''REPLACE_MEMCHR''@|0|g' \
+      -e 's|@''REPLACE_MEMMEM''@|0|g' \
+      -e 's|@''REPLACE_STRCASESTR''@|0|g' \
+      -e 's|@''REPLACE_STRDUP''@|0|g' \
+      -e 's|@''REPLACE_STRSTR''@|0|g' \
+      -e 's|@''REPLACE_STRERROR''@|0|g' \
+      -e 's|@''REPLACE_STRNCAT''@|0|g' \
+      -e 's|@''REPLACE_STRNDUP''@|0|g' \
+      -e 's|@''REPLACE_STRNLEN''@|0|g' \
+      -e 's|@''REPLACE_STRSIGNAL''@|0|g' \
+      -e 's|@''REPLACE_STRTOK_R''@|0|g' \
+      -e 's|@''UNDEFINE_STRTOK_R''@|0|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
+      < ./string.in.h; \
+} > string.h-t && \
+mv string.h-t string.h
+/bin/mkdir -p sys
+/bin/mkdir -p sys
+rm -f sys/stat.h-t sys/stat.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  sed -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_SYS_STAT_H''@|<sys/stat.h>|g' \
+      -e 's|@''GNULIB_FCHMODAT''@|0|g' \
+      -e 's|@''GNULIB_FSTATAT''@|0|g' \
+      -e 's|@''GNULIB_FUTIMENS''@|0|g' \
+      -e 's|@''GNULIB_LCHMOD''@|0|g' \
+      -e 's|@''GNULIB_LSTAT''@|1|g' \
+      -e 's|@''GNULIB_MKDIRAT''@|0|g' \
+      -e 's|@''GNULIB_MKFIFO''@|0|g' \
+      -e 's|@''GNULIB_MKFIFOAT''@|0|g' \
+      -e 's|@''GNULIB_MKNOD''@|0|g' \
+      -e 's|@''GNULIB_MKNODAT''@|0|g' \
+      -e 's|@''GNULIB_STAT''@|1|g' \
+      -e 's|@''GNULIB_UTIMENSAT''@|0|g' \
+      -e 's|@''HAVE_FCHMODAT''@|1|g' \
+      -e 's|@''HAVE_FSTATAT''@|1|g' \
+      -e 's|@''HAVE_FUTIMENS''@|1|g' \
+      -e 's|@''HAVE_LCHMOD''@|1|g' \
+      -e 's|@''HAVE_LSTAT''@|1|g' \
+      -e 's|@''HAVE_MKDIRAT''@|1|g' \
+      -e 's|@''HAVE_MKFIFO''@|1|g' \
+      -e 's|@''HAVE_MKFIFOAT''@|1|g' \
+      -e 's|@''HAVE_MKNOD''@|1|g' \
+      -e 's|@''HAVE_MKNODAT''@|1|g' \
+      -e 's|@''HAVE_UTIMENSAT''@|1|g' \
+      -e 's|@''REPLACE_FSTAT''@|0|g' \
+      -e 's|@''REPLACE_FSTATAT''@|0|g' \
+      -e 's|@''REPLACE_FUTIMENS''@|0|g' \
+      -e 's|@''REPLACE_LSTAT''@|0|g' \
+      -e 's|@''REPLACE_MKDIR''@|0|g' \
+      -e 's|@''REPLACE_MKFIFO''@|0|g' \
+      -e 's|@''REPLACE_MKNOD''@|0|g' \
+      -e 's|@''REPLACE_STAT''@|0|g' \
+      -e 's|@''REPLACE_UTIMENSAT''@|0|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+      < ./sys_stat.in.h; \
+} > sys/stat.h-t && \
+mv sys/stat.h-t sys/stat.h
+rm -f time.h-t time.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
+  sed -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_TIME_H''@|<time.h>|g' \
+      -e 's|@''GNULIB_MKTIME''@|0|g' \
+      -e 's|@''GNULIB_NANOSLEEP''@|0|g' \
+      -e 's|@''GNULIB_STRPTIME''@|0|g' \
+      -e 's|@''GNULIB_TIMEGM''@|0|g' \
+      -e 's|@''GNULIB_TIME_R''@|0|g' \
+      -e 's|@''HAVE_LOCALTIME_R''@|1|g' \
+      -e 's|@''HAVE_NANOSLEEP''@|1|g' \
+      -e 's|@''HAVE_STRPTIME''@|1|g' \
+      -e 's|@''HAVE_TIMEGM''@|1|g' \
+      -e 's|@''REPLACE_LOCALTIME_R''@|GNULIB_PORTCHECK|g' \
+      -e 's|@''REPLACE_MKTIME''@|GNULIB_PORTCHECK|g' \
+      -e 's|@''REPLACE_NANOSLEEP''@|GNULIB_PORTCHECK|g' \
+      -e 's|@''REPLACE_TIMEGM''@|GNULIB_PORTCHECK|g' \
+      -e 's|@''SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|0|g' \
+      -e 's|@''TIME_H_DEFINES_STRUCT_TIMESPEC''@|1|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+      < ./time.in.h; \
+} > time.h-t && \
+mv time.h-t time.h
+rm -f sys/time.h-t sys/time.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  sed -e 's/@''HAVE_SYS_TIME_H''@/1/g' \
+      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_SYS_TIME_H''@|<sys/time.h>|g' \
+      -e 's/@''GNULIB_GETTIMEOFDAY''@/1/g' \
+      -e 's/@''HAVE_GETTIMEOFDAY''@/1/g' \
+      -e 's/@''HAVE_STRUCT_TIMEVAL''@/1/g' \
+      -e 's/@''REPLACE_GETTIMEOFDAY''@/0/g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+      < ./sys_time.in.h; \
+} > sys/time.h-t && \
+mv sys/time.h-t sys/time.h
+rm -f unistd.h-t unistd.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  sed -e 's|@''HAVE_UNISTD_H''@|1|g' \
+      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_UNISTD_H''@|<unistd.h>|g' \
+      -e 's|@''GNULIB_CHOWN''@|0|g' \
+      -e 's|@''GNULIB_CLOSE''@|1|g' \
+      -e 's|@''GNULIB_DUP2''@|IN_PARTED_GNULIB_TESTS|g' \
+      -e 's|@''GNULIB_DUP3''@|0|g' \
+      -e 's|@''GNULIB_ENVIRON''@|IN_PARTED_GNULIB_TESTS|g' \
+      -e 's|@''GNULIB_EUIDACCESS''@|0|g' \
+      -e 's|@''GNULIB_FACCESSAT''@|0|g' \
+      -e 's|@''GNULIB_FCHDIR''@|0|g' \
+      -e 's|@''GNULIB_FCHOWNAT''@|0|g' \
+      -e 's|@''GNULIB_FSYNC''@|1|g' \
+      -e 's|@''GNULIB_FTRUNCATE''@|0|g' \
+      -e 's|@''GNULIB_GETCWD''@|0|g' \
+      -e 's|@''GNULIB_GETDOMAINNAME''@|0|g' \
+      -e 's|@''GNULIB_GETDTABLESIZE''@|0|g' \
+      -e 's|@''GNULIB_GETGROUPS''@|0|g' \
+      -e 's|@''GNULIB_GETHOSTNAME''@|0|g' \
+      -e 's|@''GNULIB_GETLOGIN''@|0|g' \
+      -e 's|@''GNULIB_GETLOGIN_R''@|0|g' \
+      -e 's|@''GNULIB_GETPAGESIZE''@|0|g' \
+      -e 's|@''GNULIB_GETUSERSHELL''@|0|g' \
+      -e 's|@''GNULIB_LCHOWN''@|0|g' \
+      -e 's|@''GNULIB_LINK''@|0|g' \
+      -e 's|@''GNULIB_LINKAT''@|0|g' \
+      -e 's|@''GNULIB_LSEEK''@|1|g' \
+      -e 's|@''GNULIB_PIPE2''@|0|g' \
+      -e 's|@''GNULIB_PREAD''@|0|g' \
+      -e 's|@''GNULIB_PWRITE''@|0|g' \
+      -e 's|@''GNULIB_READLINK''@|1|g' \
+      -e 's|@''GNULIB_READLINKAT''@|0|g' \
+      -e 's|@''GNULIB_RMDIR''@|0|g' \
+      -e 's|@''GNULIB_SLEEP''@|1|g' \
+      -e 's|@''GNULIB_SYMLINK''@|IN_PARTED_GNULIB_TESTS|g' \
+      -e 's|@''GNULIB_SYMLINKAT''@|0|g' \
+      -e 's|@''GNULIB_TTYNAME_R''@|0|g' \
+      -e 's|@''GNULIB_UNISTD_H_GETOPT''@|0|g' \
+      -e 's|@''GNULIB_UNISTD_H_SIGPIPE''@|0|g' \
+      -e 's|@''GNULIB_UNLINK''@|1|g' \
+      -e 's|@''GNULIB_UNLINKAT''@|0|g' \
+      -e 's|@''GNULIB_USLEEP''@|1|g' \
+      -e 's|@''GNULIB_WRITE''@|0|g' \
+      < ./unistd.in.h | \
+  sed -e 's|@''HAVE_CHOWN''@|1|g' \
+      -e 's|@''HAVE_DUP2''@|1|g' \
+      -e 's|@''HAVE_DUP3''@|1|g' \
+      -e 's|@''HAVE_EUIDACCESS''@|1|g' \
+      -e 's|@''HAVE_FACCESSAT''@|1|g' \
+      -e 's|@''HAVE_FCHDIR''@|1|g' \
+      -e 's|@''HAVE_FCHOWNAT''@|1|g' \
+      -e 's|@''HAVE_FSYNC''@|1|g' \
+      -e 's|@''HAVE_FTRUNCATE''@|1|g' \
+      -e 's|@''HAVE_GETDOMAINNAME''@|1|g' \
+      -e 's|@''HAVE_GETDTABLESIZE''@|1|g' \
+      -e 's|@''HAVE_GETGROUPS''@|1|g' \
+      -e 's|@''HAVE_GETHOSTNAME''@|1|g' \
+      -e 's|@''HAVE_GETLOGIN''@|1|g' \
+      -e 's|@''HAVE_GETPAGESIZE''@|1|g' \
+      -e 's|@''HAVE_LCHOWN''@|1|g' \
+      -e 's|@''HAVE_LINK''@|1|g' \
+      -e 's|@''HAVE_LINKAT''@|1|g' \
+      -e 's|@''HAVE_PIPE2''@|1|g' \
+      -e 's|@''HAVE_PREAD''@|1|g' \
+      -e 's|@''HAVE_PWRITE''@|1|g' \
+      -e 's|@''HAVE_READLINK''@|1|g' \
+      -e 's|@''HAVE_READLINKAT''@|1|g' \
+      -e 's|@''HAVE_SLEEP''@|1|g' \
+      -e 's|@''HAVE_SYMLINK''@|1|g' \
+      -e 's|@''HAVE_SYMLINKAT''@|1|g' \
+      -e 's|@''HAVE_TTYNAME_R''@|1|g' \
+      -e 's|@''HAVE_UNLINKAT''@|1|g' \
+      -e 's|@''HAVE_USLEEP''@|1|g' \
+      -e 's|@''HAVE_DECL_ENVIRON''@|1|g' \
+      -e 's|@''HAVE_DECL_GETLOGIN_R''@|1|g' \
+      -e 's|@''HAVE_DECL_GETPAGESIZE''@|1|g' \
+      -e 's|@''HAVE_DECL_GETUSERSHELL''@|1|g' \
+      -e 's|@''HAVE_OS_H''@|0|g' \
+      -e 's|@''HAVE_SYS_PARAM_H''@|0|g' \
+      -e 's|@''REPLACE_CHOWN''@|0|g' \
+      -e 's|@''REPLACE_CLOSE''@|0|g' \
+      -e 's|@''REPLACE_DUP''@|0|g' \
+      -e 's|@''REPLACE_DUP2''@|0|g' \
+      -e 's|@''REPLACE_FCHOWNAT''@|0|g' \
+      -e 's|@''REPLACE_GETCWD''@|0|g' \
+      -e 's|@''REPLACE_GETGROUPS''@|0|g' \
+      -e 's|@''REPLACE_GETPAGESIZE''@|0|g' \
+      -e 's|@''REPLACE_LCHOWN''@|0|g' \
+      -e 's|@''REPLACE_LINK''@|0|g' \
+      -e 's|@''REPLACE_LINKAT''@|0|g' \
+      -e 's|@''REPLACE_LSEEK''@|0|g' \
+      -e 's|@''REPLACE_PREAD''@|0|g' \
+      -e 's|@''REPLACE_PWRITE''@|0|g' \
+      -e 's|@''REPLACE_READLINK''@|0|g' \
+      -e 's|@''REPLACE_RMDIR''@|0|g' \
+      -e 's|@''REPLACE_SLEEP''@|0|g' \
+      -e 's|@''REPLACE_SYMLINK''@|0|g' \
+      -e 's|@''REPLACE_TTYNAME_R''@|0|g' \
+      -e 's|@''REPLACE_UNLINK''@|0|g' \
+      -e 's|@''REPLACE_UNLINKAT''@|0|g' \
+      -e 's|@''REPLACE_USLEEP''@|0|g' \
+      -e 's|@''REPLACE_WRITE''@|0|g' \
+      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|0|g' \
+      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|0|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
+} > unistd.h-t && \
+mv unistd.h-t unistd.h
+rm -f wchar.h-t wchar.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  sed -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_WCHAR_H''@|<wchar.h>|g' \
+      -e 's|@''HAVE_WCHAR_H''@|1|g' \
+      -e 's|@''GNULIB_BTOWC''@|1|g' \
+      -e 's|@''GNULIB_WCTOB''@|IN_PARTED_GNULIB_TESTS|g' \
+      -e 's|@''GNULIB_MBSINIT''@|1|g' \
+      -e 's|@''GNULIB_MBRTOWC''@|1|g' \
+      -e 's|@''GNULIB_MBRLEN''@|0|g' \
+      -e 's|@''GNULIB_MBSRTOWCS''@|0|g' \
+      -e 's|@''GNULIB_MBSNRTOWCS''@|0|g' \
+      -e 's|@''GNULIB_WCRTOMB''@|1|g' \
+      -e 's|@''GNULIB_WCSRTOMBS''@|0|g' \
+      -e 's|@''GNULIB_WCSNRTOMBS''@|0|g' \
+      -e 's|@''GNULIB_WCWIDTH''@|0|g' \
+      -e 's|@''HAVE_WINT_T''@|1|g' \
+      -e 's|@''HAVE_BTOWC''@|1|g' \
+      -e 's|@''HAVE_MBSINIT''@|1|g' \
+      -e 's|@''HAVE_MBRTOWC''@|1|g' \
+      -e 's|@''HAVE_MBRLEN''@|1|g' \
+      -e 's|@''HAVE_MBSRTOWCS''@|1|g' \
+      -e 's|@''HAVE_MBSNRTOWCS''@|1|g' \
+      -e 's|@''HAVE_WCRTOMB''@|1|g' \
+      -e 's|@''HAVE_WCSRTOMBS''@|1|g' \
+      -e 's|@''HAVE_WCSNRTOMBS''@|1|g' \
+      -e 's|@''HAVE_DECL_WCTOB''@|1|g' \
+      -e 's|@''HAVE_DECL_WCWIDTH''@|1|g' \
+      -e 's|@''REPLACE_MBSTATE_T''@|0|g' \
+      -e 's|@''REPLACE_BTOWC''@|0|g' \
+      -e 's|@''REPLACE_WCTOB''@|0|g' \
+      -e 's|@''REPLACE_MBSINIT''@|0|g' \
+      -e 's|@''REPLACE_MBRTOWC''@|0|g' \
+      -e 's|@''REPLACE_MBRLEN''@|0|g' \
+      -e 's|@''REPLACE_MBSRTOWCS''@|0|g' \
+      -e 's|@''REPLACE_MBSNRTOWCS''@|0|g' \
+      -e 's|@''REPLACE_WCRTOMB''@|0|g' \
+      -e 's|@''REPLACE_WCSRTOMBS''@|0|g' \
+      -e 's|@''REPLACE_WCSNRTOMBS''@|0|g' \
+      -e 's|@''REPLACE_WCWIDTH''@|0|g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+    < ./wchar.in.h; \
+} > wchar.h-t && \
+mv wchar.h-t wchar.h
+rm -f wctype.h-t wctype.h && \
+{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+  sed -e 's/@''HAVE_WCTYPE_H''@/1/g' \
+      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
+      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
+      -e 's|@''NEXT_WCTYPE_H''@|<wctype.h>|g' \
+      -e 's/@''HAVE_ISWBLANK''@/1/g' \
+      -e 's/@''HAVE_ISWCNTRL''@/1/g' \
+      -e 's/@''HAVE_WINT_T''@/1/g' \
+      -e 's/@''REPLACE_ISWCNTRL''@/0/g' \
+      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
+      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
+      < ./wctype.in.h; \
+} > wctype.h-t && \
+mv wctype.h-t wctype.h
+/usr/bin/make  all-recursive
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o close-hook.lo close-hook.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o exitfail.lo exitfail.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o localcharset.lo localcharset.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o malloca.lo malloca.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o progname.lo progname.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o version-etc.lo version-etc.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o version-etc-fsf.lo version-etc-fsf.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o xalloc-die.lo xalloc-die.c
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c version-etc.c  -fPIC -DPIC -o .libs/version-etc.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c exitfail.c  -fPIC -DPIC -o .libs/exitfail.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c progname.c  -fPIC -DPIC -o .libs/progname.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c close-hook.c  -fPIC -DPIC -o .libs/close-hook.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c localcharset.c  -fPIC -DPIC -o .libs/localcharset.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c malloca.c  -fPIC -DPIC -o .libs/malloca.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c xalloc-die.c  -fPIC -DPIC -o .libs/xalloc-die.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c version-etc-fsf.c  -fPIC -DPIC -o .libs/version-etc-fsf.o
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o xstrndup.lo xstrndup.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o argmatch.lo argmatch.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o basename.lo basename.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o basename-lgpl.lo basename-lgpl.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o close-stream.lo close-stream.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o closeout.lo closeout.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o dirname.lo dirname.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o dirname-lgpl.lo dirname-lgpl.c
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c argmatch.c  -fPIC -DPIC -o .libs/argmatch.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c basename.c  -fPIC -DPIC -o .libs/basename.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c xstrndup.c  -fPIC -DPIC -o .libs/xstrndup.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c basename-lgpl.c  -fPIC -DPIC -o .libs/basename-lgpl.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c closeout.c  -fPIC -DPIC -o .libs/closeout.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c close-stream.c  -fPIC -DPIC -o .libs/close-stream.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c dirname.c  -fPIC -DPIC -o .libs/dirname.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c dirname-lgpl.c  -fPIC -DPIC -o .libs/dirname-lgpl.o
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o long-options.lo long-options.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o quote.lo quote.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o quotearg.lo quotearg.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o regex.lo regex.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o safe-read.lo safe-read.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o stripslash.lo stripslash.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o tempname.lo tempname.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o xmalloc.lo xmalloc.c
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c quote.c  -fPIC -DPIC -o .libs/quote.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c quotearg.c  -fPIC -DPIC -o .libs/quotearg.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c long-options.c  -fPIC -DPIC -o .libs/long-options.o
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o xstrtol.lo xstrtol.c
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c stripslash.c  -fPIC -DPIC -o .libs/stripslash.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c regex.c  -fPIC -DPIC -o .libs/regex.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c safe-read.c  -fPIC -DPIC -o .libs/safe-read.o
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c tempname.c  -fPIC -DPIC -o .libs/tempname.o
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o xstrtol-error.lo xstrtol-error.c
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c xmalloc.c  -fPIC -DPIC -o .libs/xmalloc.o
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I.     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o xstrtoul.lo xstrtoul.c
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c xstrtol.c  -fPIC -DPIC -o .libs/xstrtol.o
+rm -f t-charset.alias charset.alias && \
+/bin/sh ./config.charset 'x86_64-unknown-linux-gnu' > t-charset.alias && \
+mv t-charset.alias charset.alias
+rm -f t-ref-add.sed ref-add.sed && \
+sed -e '/^#/d' -e 's/@''PACKAGE''@/parted/g' ref-add.sin > t-ref-add.sed && \
+mv t-ref-add.sed ref-add.sed
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c xstrtol-error.c  -fPIC -DPIC -o .libs/xstrtol-error.o
+rm -f t-ref-del.sed ref-del.sed && \
+sed -e '/^#/d' -e 's/@''PACKAGE''@/parted/g' ref-del.sin > t-ref-del.sed && \
+mv t-ref-del.sed ref-del.sed
+libtool: compile:  gcc -std=gnu99 -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c xstrtoul.c  -fPIC -DPIC -o .libs/xstrtoul.o
+/bin/sh ../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libgnulib.la  close-hook.lo exitfail.lo localcharset.lo malloca.lo progname.lo version-etc.lo version-etc-fsf.lo xalloc-die.lo xstrndup.lo argmatch.lo basename.lo basename-lgpl.lo close-stream.lo closeout.lo dirname.lo dirname-lgpl.lo long-options.lo quote.lo quotearg.lo regex.lo safe-read.lo stripslash.lo tempname.lo xmalloc.lo xstrtol.lo xstrtol-error.lo xstrtoul.lo  
+libtool: link: ar cru .libs/libgnulib.a .libs/close-hook.o .libs/exitfail.o .libs/localcharset.o .libs/malloca.o .libs/progname.o .libs/version-etc.o .libs/version-etc-fsf.o .libs/xalloc-die.o .libs/xstrndup.o .libs/argmatch.o .libs/basename.o .libs/basename-lgpl.o .libs/close-stream.o .libs/closeout.o .libs/dirname.o .libs/dirname-lgpl.o .libs/long-options.o .libs/quote.o .libs/quotearg.o .libs/regex.o .libs/safe-read.o .libs/stripslash.o .libs/tempname.o .libs/xmalloc.o .libs/xstrtol.o .libs/xstrtol-error.o .libs/xstrtoul.o 
+libtool: link: ranlib .libs/libgnulib.a
+libtool: link: ( cd ".libs" && rm -f "libgnulib.la" && ln -s "../libgnulib.la" "libgnulib.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+Making all in libparted
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted'
+Makefile:1095: warning: overriding recipe for target `linux.lo'
+Makefile:1088: warning: ignoring old recipe for target `linux.lo'
+Making all in labels
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+/usr/bin/make  all-am
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o aix.lo aix.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o bsd.lo bsd.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o dos.lo dos.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o dvh.lo dvh.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o efi_crc32.lo efi_crc32.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o gpt.lo gpt.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o loop.lo loop.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o mac.lo mac.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c dvh.c  -fPIC -DPIC -o .libs/dvh.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c dos.c  -fPIC -DPIC -o .libs/dos.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c aix.c  -fPIC -DPIC -o .libs/aix.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c loop.c  -fPIC -DPIC -o .libs/loop.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c efi_crc32.c  -fPIC -DPIC -o .libs/efi_crc32.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c bsd.c  -fPIC -DPIC -o .libs/bsd.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c gpt.c  -fPIC -DPIC -o .libs/gpt.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c mac.c  -fPIC -DPIC -o .libs/mac.o
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o pc98.lo pc98.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o pt-tools.lo pt-tools.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o rdb.lo rdb.c
+/bin/sh ../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include -I../../libparted      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o sun.lo sun.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c pc98.c  -fPIC -DPIC -o .libs/pc98.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c rdb.c  -fPIC -DPIC -o .libs/rdb.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c sun.c  -fPIC -DPIC -o .libs/sun.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../lib -I../../lib -I../../include -I../../libparted -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c pt-tools.c  -fPIC -DPIC -o .libs/pt-tools.o
+pc98.c: In function 'pc98_probe':
+pc98.c:188:26: warning: unused variable 'p' [-Wunused-variable]
+pc98.c:187:6: warning: unused variable 'empty' [-Wunused-variable]
+pc98.c: At top level:
+pc98.c:154:1: warning: 'check_partition_consistency' defined but not used [-Wunused-function]
+/bin/sh ../../libtool  --tag=CC   --mode=link gcc -std=gnu99   -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o liblabels.la   aix.lo bsd.lo dos.lo dvh.lo efi_crc32.lo gpt.lo loop.lo mac.lo pc98.lo pt-tools.lo rdb.lo sun.lo   
+libtool: link: ar cru .libs/liblabels.a .libs/aix.o .libs/bsd.o .libs/dos.o .libs/dvh.o .libs/efi_crc32.o .libs/gpt.o .libs/loop.o .libs/mac.o .libs/pc98.o .libs/pt-tools.o .libs/rdb.o .libs/sun.o 
+libtool: link: ranlib .libs/liblabels.a
+libtool: link: ( cd ".libs" && rm -f "liblabels.la" && ln -s "../liblabels.la" "liblabels.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+Making all in fs
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+Making all in amiga
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o amiga.lo amiga.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o affs.lo affs.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o asfs.lo asfs.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o apfs.lo apfs.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o interface.lo interface.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c affs.c  -fPIC -DPIC -o .libs/affs.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c apfs.c  -fPIC -DPIC -o .libs/apfs.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c interface.c  -fPIC -DPIC -o .libs/interface.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c amiga.c  -fPIC -DPIC -o .libs/amiga.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c asfs.c  -fPIC -DPIC -o .libs/asfs.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libamigafs.la  amiga.lo affs.lo asfs.lo apfs.lo interface.lo  
+libtool: link: ar cru .libs/libamigafs.a .libs/amiga.o .libs/affs.o .libs/asfs.o .libs/apfs.o .libs/interface.o 
+libtool: link: ranlib .libs/libamigafs.a
+libtool: link: ( cd ".libs" && rm -f "libamigafs.la" && ln -s "../libamigafs.la" "libamigafs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+Making all in ext2
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ext2.lo ext2.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ext2_block_relocator.lo ext2_block_relocator.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ext2_buffer.lo ext2_buffer.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ext2_inode_relocator.lo ext2_inode_relocator.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ext2_meta.lo ext2_meta.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ext2_mkfs.lo ext2_mkfs.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ext2_resize.lo ext2_resize.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o interface.lo interface.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ext2.c  -fPIC -DPIC -o .libs/ext2.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ext2_buffer.c  -fPIC -DPIC -o .libs/ext2_buffer.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ext2_mkfs.c  -fPIC -DPIC -o .libs/ext2_mkfs.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ext2_meta.c  -fPIC -DPIC -o .libs/ext2_meta.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ext2_block_relocator.c  -fPIC -DPIC -o .libs/ext2_block_relocator.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ext2_inode_relocator.c  -fPIC -DPIC -o .libs/ext2_inode_relocator.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c interface.c  -fPIC -DPIC -o .libs/interface.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ext2_resize.c  -fPIC -DPIC -o .libs/ext2_resize.o
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o parted_io.lo parted_io.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o tune.lo tune.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c tune.c  -fPIC -DPIC -o .libs/tune.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c parted_io.c  -fPIC -DPIC -o .libs/parted_io.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libext2.la  ext2.lo ext2_block_relocator.lo ext2_buffer.lo ext2_inode_relocator.lo ext2_meta.lo ext2_mkfs.lo ext2_resize.lo interface.lo parted_io.lo tune.lo  
+libtool: link: ar cru .libs/libext2.a .libs/ext2.o .libs/ext2_block_relocator.o .libs/ext2_buffer.o .libs/ext2_inode_relocator.o .libs/ext2_meta.o .libs/ext2_mkfs.o .libs/ext2_resize.o .libs/interface.o .libs/parted_io.o .libs/tune.o 
+libtool: link: ranlib .libs/libext2.a
+libtool: link: ( cd ".libs" && rm -f "libext2.la" && ln -s "../libext2.la" "libext2.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+Making all in ufs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ufs.lo ufs.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ufs.c  -fPIC -DPIC -o .libs/ufs.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libufs.la  ufs.lo  
+libtool: link: ar cru .libs/libufs.a .libs/ufs.o 
+libtool: link: ranlib .libs/libufs.a
+libtool: link: ( cd ".libs" && rm -f "libufs.la" && ln -s "../libufs.la" "libufs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+Making all in fat
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o bootsector.lo bootsector.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o calc.lo calc.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o clstdup.lo clstdup.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o context.lo context.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o count.lo count.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o fat.lo fat.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o fatio.lo fatio.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o table.lo table.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c context.c  -fPIC -DPIC -o .libs/context.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c clstdup.c  -fPIC -DPIC -o .libs/clstdup.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c count.c  -fPIC -DPIC -o .libs/count.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c calc.c  -fPIC -DPIC -o .libs/calc.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c fatio.c  -fPIC -DPIC -o .libs/fatio.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c table.c  -fPIC -DPIC -o .libs/table.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c fat.c  -fPIC -DPIC -o .libs/fat.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c bootsector.c  -fPIC -DPIC -o .libs/bootsector.o
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o traverse.lo traverse.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o resize.lo resize.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c traverse.c  -fPIC -DPIC -o .libs/traverse.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c resize.c  -fPIC -DPIC -o .libs/resize.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libfat.la  bootsector.lo calc.lo clstdup.lo context.lo count.lo fat.lo fatio.lo table.lo traverse.lo resize.lo  
+libtool: link: ar cru .libs/libfat.a .libs/bootsector.o .libs/calc.o .libs/clstdup.o .libs/context.o .libs/count.o .libs/fat.o .libs/fatio.o .libs/table.o .libs/traverse.o .libs/resize.o 
+libtool: link: ranlib .libs/libfat.a
+libtool: link: ( cd ".libs" && rm -f "libfat.la" && ln -s "../libfat.la" "libfat.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+Making all in ntfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o ntfs.lo ntfs.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c ntfs.c  -fPIC -DPIC -o .libs/ntfs.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libntfs.la  ntfs.lo  
+libtool: link: ar cru .libs/libntfs.a .libs/ntfs.o 
+libtool: link: ranlib .libs/libntfs.a
+libtool: link: ( cd ".libs" && rm -f "libntfs.la" && ln -s "../libntfs.la" "libntfs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+Making all in hfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o hfs.lo hfs.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o probe.lo probe.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o cache.lo cache.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o advfs.lo advfs.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o file.lo file.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o reloc.lo reloc.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o advfs_plus.lo advfs_plus.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o file_plus.lo file_plus.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c probe.c  -fPIC -DPIC -o .libs/probe.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c cache.c  -fPIC -DPIC -o .libs/cache.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c hfs.c  -fPIC -DPIC -o .libs/hfs.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c reloc.c  -fPIC -DPIC -o .libs/reloc.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c file.c  -fPIC -DPIC -o .libs/file.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c advfs.c  -fPIC -DPIC -o .libs/advfs.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c file_plus.c  -fPIC -DPIC -o .libs/file_plus.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c advfs_plus.c  -fPIC -DPIC -o .libs/advfs_plus.o
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o reloc_plus.lo reloc_plus.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o journal.lo journal.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c reloc_plus.c  -fPIC -DPIC -o .libs/reloc_plus.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c journal.c  -fPIC -DPIC -o .libs/journal.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libhfs.la  hfs.lo probe.lo cache.lo advfs.lo file.lo reloc.lo advfs_plus.lo file_plus.lo reloc_plus.lo journal.lo  
+libtool: link: ar cru .libs/libhfs.a .libs/hfs.o .libs/probe.o .libs/cache.o .libs/advfs.o .libs/file.o .libs/reloc.o .libs/advfs_plus.o .libs/file_plus.o .libs/reloc_plus.o .libs/journal.o 
+libtool: link: ranlib .libs/libhfs.a
+libtool: link: ( cd ".libs" && rm -f "libhfs.la" && ln -s "../libhfs.la" "libhfs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+Making all in linux_swap
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o linux_swap.lo linux_swap.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c linux_swap.c  -fPIC -DPIC -o .libs/linux_swap.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o liblinuxswap.la  linux_swap.lo  
+libtool: link: ar cru .libs/liblinuxswap.a .libs/linux_swap.o 
+libtool: link: ranlib .libs/liblinuxswap.a
+libtool: link: ( cd ".libs" && rm -f "liblinuxswap.la" && ln -s "../liblinuxswap.la" "liblinuxswap.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+Making all in xfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o xfs.lo xfs.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c xfs.c  -fPIC -DPIC -o .libs/xfs.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libxfs.la  xfs.lo  
+libtool: link: ar cru .libs/libxfs.a .libs/xfs.o 
+libtool: link: ranlib .libs/libxfs.a
+libtool: link: ( cd ".libs" && rm -f "libxfs.la" && ln -s "../libxfs.la" "libxfs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+Making all in jfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o jfs.lo jfs.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c jfs.c  -fPIC -DPIC -o .libs/jfs.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libjfs.la  jfs.lo  
+libtool: link: ar cru .libs/libjfs.a .libs/jfs.o 
+libtool: link: ranlib .libs/libjfs.a
+libtool: link: ( cd ".libs" && rm -f "libjfs.la" && ln -s "../libjfs.la" "libjfs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+Making all in reiserfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o reiserfs.lo reiserfs.c
+/bin/sh ../../../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../../../lib -I../../../include     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o geom_dal.lo geom_dal.c
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c geom_dal.c  -fPIC -DPIC -o .libs/geom_dal.o
+libtool: compile:  gcc -std=gnu99 -I. -I../../../lib -I../../../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c reiserfs.c  -fPIC -DPIC -o .libs/reiserfs.o
+/bin/sh ../../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o libreiserfs.la  reiserfs.lo geom_dal.lo  
+libtool: link: ar cru .libs/libreiserfs.a .libs/reiserfs.o .libs/geom_dal.o 
+libtool: link: ranlib .libs/libreiserfs.a
+libtool: link: ( cd ".libs" && rm -f "libreiserfs.la" && ln -s "../libreiserfs.la" "libreiserfs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+/bin/sh ../../libtool  --tag=CC   --mode=link gcc -std=gnu99  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -version-info 0:0:0 -release 2.3 -rdynamic -o libfs.la   -luuid    amiga/libamigafs.la ext2/libext2.la ufs/libufs.la fat/libfat.la ntfs/libntfs.la hfs/libhfs.la linux_swap/liblinuxswap.la xfs/libxfs.la jfs/libjfs.la reiserfs/libreiserfs.la 
+libtool: link: warning: `-version-info/-version-number' is ignored for convenience libraries
+libtool: link: warning: `-release' is ignored for convenience libraries
+libtool: link: (cd .libs/libfs.lax/libamigafs.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/amiga/.libs/libamigafs.a")
+libtool: link: (cd .libs/libfs.lax/libext2.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/ext2/.libs/libext2.a")
+libtool: link: (cd .libs/libfs.lax/libufs.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/ufs/.libs/libufs.a")
+libtool: link: (cd .libs/libfs.lax/libfat.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/fat/.libs/libfat.a")
+libtool: link: (cd .libs/libfs.lax/libntfs.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs/.libs/libntfs.a")
+libtool: link: (cd .libs/libfs.lax/libhfs.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/hfs/.libs/libhfs.a")
+libtool: link: (cd .libs/libfs.lax/liblinuxswap.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap/.libs/liblinuxswap.a")
+libtool: link: (cd .libs/libfs.lax/libxfs.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/xfs/.libs/libxfs.a")
+libtool: link: (cd .libs/libfs.lax/libjfs.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/jfs/.libs/libjfs.a")
+libtool: link: (cd .libs/libfs.lax/libreiserfs.a && ar x "/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs/.libs/libreiserfs.a")
+copying selected object files to avoid basename conflicts...
+libtool: link: ln .libs/libfs.lax/libext2.a/interface.o .libs/libfs.lax/lt1-interface.o || cp .libs/libfs.lax/libext2.a/interface.o .libs/libfs.lax/lt1-interface.o
+libtool: link: ar cru .libs/libfs.a .libs/libfs.lax/libamigafs.a/interface.o .libs/libfs.lax/libamigafs.a/amiga.o .libs/libfs.lax/libamigafs.a/affs.o .libs/libfs.lax/libamigafs.a/apfs.o .libs/libfs.lax/libamigafs.a/asfs.o .libs/libfs.lax/lt1-interface.o .libs/libfs.lax/libext2.a/ext2_meta.o .libs/libfs.lax/libext2.a/ext2.o .libs/libfs.lax/libext2.a/ext2_mkfs.o .libs/libfs.lax/libext2.a/parted_io.o .libs/libfs.lax/libext2.a/ext2_resize.o .libs/libfs.lax/libext2.a/ext2_inode_relocator.o .libs/libfs.lax/libext2.a/ext2_buffer.o .libs/libfs.lax/libext2.a/ext2_block_relocator.o .libs/libfs.lax/libext2.a/tune.o .libs/libfs.lax/libufs.a/ufs.o .libs/libfs.lax/libfat.a/traverse.o .libs/libfs.lax/libfat.a/fatio.o .libs/libfs.lax/libfat.a/bootsector.o .libs/libfs.lax/libfat.a/context.o .libs/libfs.lax/libfat.a/calc.o .libs/libfs.lax/libfat.a/table.o .libs/libfs.lax/libfat.a/count.o .libs/libfs.lax/libfat.a/clstdup.o .libs/libfs.lax/libfat.a/fat.o .libs/libfs.lax/libfat.a/resize.o .libs/
 libfs.lax/libntfs.a/ntfs.o .libs/libfs.lax/libhfs.a/file.o .libs/libfs.lax/libhfs.a/cache.o .libs/libfs.lax/libhfs.a/file_plus.o .libs/libfs.lax/libhfs.a/reloc.o .libs/libfs.lax/libhfs.a/reloc_plus.o .libs/libfs.lax/libhfs.a/advfs.o .libs/libfs.lax/libhfs.a/journal.o .libs/libfs.lax/libhfs.a/hfs.o .libs/libfs.lax/libhfs.a/probe.o .libs/libfs.lax/libhfs.a/advfs_plus.o .libs/libfs.lax/liblinuxswap.a/linux_swap.o .libs/libfs.lax/libxfs.a/xfs.o .libs/libfs.lax/libjfs.a/jfs.o .libs/libfs.lax/libreiserfs.a/geom_dal.o .libs/libfs.lax/libreiserfs.a/reiserfs.o
+libtool: link: ranlib .libs/libfs.a
+libtool: link: rm -fr .libs/libfs.lax .libs/libfs.lax
+libtool: link: ( cd ".libs" && rm -f "libfs.la" && ln -s "../libfs.la" "libfs.la" )
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+Making all in .
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted'
+Makefile:1095: warning: overriding recipe for target `linux.lo'
+Makefile:1088: warning: ignoring old recipe for target `linux.lo'
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o debug.lo debug.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o architecture.lo architecture.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o device.lo device.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o exception.lo exception.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o filesys.lo filesys.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o libparted.lo libparted.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o timer.lo timer.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o unit.lo unit.c
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c exception.c  -fPIC -DPIC -o .libs/exception.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c device.c  -fPIC -DPIC -o .libs/device.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c libparted.c  -fPIC -DPIC -o .libs/libparted.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c architecture.c  -fPIC -DPIC -o .libs/architecture.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c debug.c  -fPIC -DPIC -o .libs/debug.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c timer.c  -fPIC -DPIC -o .libs/timer.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c filesys.c  -fPIC -DPIC -o .libs/filesys.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c unit.c  -fPIC -DPIC -o .libs/unit.o
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o disk.lo disk.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o geom.lo `test -f 'cs/geom.c' || echo './'`cs/geom.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o constraint.lo `test -f 'cs/constraint.c' || echo './'`cs/constraint.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o natmath.lo `test -f 'cs/natmath.c' || echo './'`cs/natmath.c
+/bin/sh ../libtool  --tag=CC   --mode=compile gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o linux.lo `test -f 'arch/linux.c' || echo './'`arch/linux.c
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c disk.c  -fPIC -DPIC -o .libs/disk.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c cs/geom.c  -fPIC -DPIC -o .libs/geom.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c arch/linux.c  -fPIC -DPIC -o .libs/linux.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c cs/constraint.c  -fPIC -DPIC -o .libs/constraint.o
+libtool: compile:  gcc -std=gnu99 -I. -I../lib -I../lib -I../include -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c cs/natmath.c  -fPIC -DPIC -o .libs/natmath.o
+/bin/sh ../libtool  --tag=CC   --mode=link gcc -std=gnu99   -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -version-info 0:1:0 -rdynamic -o libparted.la -rpath /lib64 debug.lo architecture.lo device.lo exception.lo filesys.lo libparted.lo timer.lo unit.lo disk.lo geom.lo constraint.lo natmath.lo linux.lo  fs/libfs.la labels/liblabels.la ../lib/libgnulib.la  -ldl -ldevmapper -lselinux -lsepol -lblkid  
+libtool: link: gcc -std=gnu99 -shared  .libs/debug.o .libs/architecture.o .libs/device.o .libs/exception.o .libs/filesys.o .libs/libparted.o .libs/timer.o .libs/unit.o .libs/disk.o .libs/geom.o .libs/constraint.o .libs/natmath.o .libs/linux.o  -Wl,--whole-archive fs/.libs/libfs.a labels/.libs/liblabels.a ../lib/.libs/libgnulib.a -Wl,--no-whole-archive  -luuid -ldl -ldevmapper -lselinux -lsepol -lblkid  -m64 -mtune=generic   -Wl,-soname -Wl,libparted.so.0 -o .libs/libparted.so.0.0.1
+libtool: link: (cd ".libs" && rm -f "libparted.so.0" && ln -s "libparted.so.0.0.1" "libparted.so.0")
+libtool: link: (cd ".libs" && rm -f "libparted.so" && ln -s "libparted.so.0.0.1" "libparted.so")
+libtool: link: ( cd ".libs" && rm -f "libparted.la" && ln -s "../libparted.la" "libparted.la" )
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted'
+Making all in parted
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/parted'
+rm -f version.c
+rm -f version.h
+printf '#include <config.h>\n' > version.ct
+printf 'extern char const *Version;\n' > version.ht
+printf 'char const *Version = "2.3";\n' >> version.ct
+chmod a-w version.ht
+chmod a-w version.ct
+mv version.ht version.h
+mv version.ct version.c
+/usr/bin/make  all-am
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/parted'
+gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c version.c
+gcc -std=gnu99  -I. -I../lib -I../lib -I../include    -DBUILDINFO= -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o parted-command.o `test -f 'command.c' || echo './'`command.c
+gcc -std=gnu99  -I. -I../lib -I../lib -I../include    -DBUILDINFO= -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o parted-parted.o `test -f 'parted.c' || echo './'`parted.c
+gcc -std=gnu99  -I. -I../lib -I../lib -I../include    -DBUILDINFO= -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o parted-strlist.o `test -f 'strlist.c' || echo './'`strlist.c
+gcc -std=gnu99  -I. -I../lib -I../lib -I../include    -DBUILDINFO= -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o parted-ui.o `test -f 'ui.c' || echo './'`ui.c
+gcc -std=gnu99  -I. -I../lib -I../lib -I../include    -DBUILDINFO= -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c -o parted-table.o `test -f 'table.c' || echo './'`table.c
+rm -f libver.a
+ar cru libver.a version.o 
+ranlib libver.a
+/bin/sh ../libtool  --tag=CC   --mode=link gcc -std=gnu99 -DBUILDINFO= -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -Wl,--as-needed -rdynamic -o parted parted-command.o parted-parted.o parted-strlist.o parted-ui.o parted-table.o libver.a ../libparted/libparted.la   -lreadline  -ldl -ltinfo  
+libtool: link: DIE_RPATH_DIE="/lib64:" gcc -std=gnu99 -DBUILDINFO= -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -Wl,--as-needed -rdynamic -o .libs/parted parted-command.o parted-parted.o parted-strlist.o parted-ui.o parted-table.o  libver.a ../libparted/.libs/libparted.so -luuid -ldevmapper -lselinux -lsepol -lblkid -lreadline -ldl -ltinfo
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/parted'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/parted'
+Making all in partprobe
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/partprobe'
+gcc -std=gnu99  -I. -I../lib -I../lib -I../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c partprobe.c
+/bin/sh ../libtool  --tag=CC   --mode=link gcc -std=gnu99   -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o partprobe partprobe.o ../libparted/libparted.la   -lreadline  -ldl -ltinfo  
+libtool: link: DIE_RPATH_DIE="/lib64:" gcc -std=gnu99 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -rdynamic -o .libs/partprobe partprobe.o  ../libparted/.libs/libparted.so -luuid -ldevmapper -lselinux -lsepol -lblkid -lreadline -ldl -ltinfo
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/partprobe'
+Making all in include
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/include'
+Making all in parted
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[3]: Nothing to be done for `all'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/include'
+make[3]: Nothing to be done for `all-am'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/include'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/include'
+Making all in doc
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/doc'
+Making all in C
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/C'
+make[3]: Nothing to be done for `all'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/C'
+Making all in pt_BR
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+for po in `ls -1 ./*.pt_BR.po 2>/dev/null`; do \
+	/usr/bin/make $(basename ${po%.pt_BR.po}); \
+done
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/doc'
+Updating ./version.texi
+restore=: && backupdir=".am$$" && \
+am__cwd=`pwd` && CDPATH="${ZSH_VERSION+.}:" && cd . && \
+rm -rf $backupdir && mkdir $backupdir && \
+if (makeinfo --no-split --version) >/dev/null 2>&1; then \
+  for f in parted.info parted.info-[0-9] parted.info-[0-9][0-9] parted.i[0-9] parted.i[0-9][0-9]; do \
+    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
+  done; \
+else :; fi && \
+cd "$am__cwd"; \
+if makeinfo --no-split   -I . \
+ -o parted.info parted.texi; \
+then \
+  rc=0; \
+  CDPATH="${ZSH_VERSION+.}:" && cd .; \
+else \
+  rc=$?; \
+  CDPATH="${ZSH_VERSION+.}:" && cd . && \
+  $restore $backupdir/* `echo "./parted.info" | sed 's|[^/]*$||'`; \
+fi; \
+rm -rf $backupdir; exit $rc
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc'
+Making all in debug
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/debug'
+Making all in clearfat
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+gcc -std=gnu99  -I. -I../../lib -I../../lib -I../../include      -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c clearfat.c
+/bin/sh ../../libtool  --tag=CC   --mode=link gcc -std=gnu99   -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable  -rdynamic -o clearfat clearfat.o ../../libparted/libparted.la   -lreadline  -ldl -ltinfo  
+libtool: link: DIE_RPATH_DIE="/lib64:" gcc -std=gnu99 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -rdynamic -o .libs/clearfat clearfat.o  ../../libparted/.libs/libparted.so -luuid -ldevmapper -lselinux -lsepol -lblkid -lreadline -ldl -ltinfo
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+Making all in test
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[3]: Nothing to be done for `all'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/debug'
+make[3]: Nothing to be done for `all-am'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug'
+Making all in tests
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/tests'
+rm -f old-init.sh-t old-init.sh
+echo 'PARTED_USABLE_TEST_DIR="."' > old-init.sh-t
+echo 'abs_top_srcdir="/builddir/build/BUILD/parted-2.3"' >> old-init.sh-t
+echo 'PATH="/builddir/build/BUILD/parted-2.3/parted:/builddir/build/BUILD/parted-2.3/partprobe:$PATH"' >> old-init.sh-t
+echo 'export PATH' >> old-init.sh-t
+chmod a-w old-init.sh-t
+mv old-init.sh-t old-init.sh
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/tests'
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3'
+make[2]: Nothing to be done for `all-am'.
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3'
+make[1]: Leaving directory `/builddir/build/BUILD/parted-2.3'
++ exit 0
+Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.QvpOrY
++ umask 022
++ cd /builddir/build/BUILD
++ '[' /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64 '!=' / ']'
++ rm -rf /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64
+++ dirname /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64
++ mkdir -p /builddir/build/BUILDROOT
++ mkdir /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64
++ cd parted-2.3
++ LANG=C
++ export LANG
++ unset DISPLAY
++ /bin/rm -rf /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64
++ /usr/bin/make install DESTDIR=/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64
+WARNING: version string 2.3 is out of date;
+run '/usr/bin/make _version' to fix it
+/usr/bin/make  install-recursive
+make[1]: Entering directory `/builddir/build/BUILD/parted-2.3'
+Making install in po
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/po'
+installing ca.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/ca/LC_MESSAGES/parted.mo
+installing cs.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/cs/LC_MESSAGES/parted.mo
+installing da.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/da/LC_MESSAGES/parted.mo
+installing de.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/de/LC_MESSAGES/parted.mo
+installing es.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/es/LC_MESSAGES/parted.mo
+installing fr.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/fr/LC_MESSAGES/parted.mo
+installing gl.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/gl/LC_MESSAGES/parted.mo
+installing id.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/id/LC_MESSAGES/parted.mo
+installing it.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/it/LC_MESSAGES/parted.mo
+installing ja.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/ja/LC_MESSAGES/parted.mo
+installing nl.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/nl/LC_MESSAGES/parted.mo
+installing nn.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/nn/LC_MESSAGES/parted.mo
+installing pl.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/pl/LC_MESSAGES/parted.mo
+installing pt.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/pt/LC_MESSAGES/parted.mo
+installing pt_BR.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/pt_BR/LC_MESSAGES/parted.mo
+installing ro.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/ro/LC_MESSAGES/parted.mo
+installing ru.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/ru/LC_MESSAGES/parted.mo
+installing rw.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/rw/LC_MESSAGES/parted.mo
+installing sk.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/sk/LC_MESSAGES/parted.mo
+installing sv.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/sv/LC_MESSAGES/parted.mo
+installing tr.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/tr/LC_MESSAGES/parted.mo
+installing uk.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/uk/LC_MESSAGES/parted.mo
+installing vi.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/vi/LC_MESSAGES/parted.mo
+installing zh_CN.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/zh_CN/LC_MESSAGES/parted.mo
+installing zh_TW.gmo as /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/locale/zh_TW/LC_MESSAGES/parted.mo
+if test "parted" = "gettext-tools"; then \
+  /bin/mkdir -p /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/gettext/po; \
+  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en at quot.header en at boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
+    /usr/bin/install -c -m 644 ./$file \
+		    /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/gettext/po/$file; \
+  done; \
+  for file in Makevars; do \
+    rm -f /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/gettext/po/$file; \
+  done; \
+else \
+  : ; \
+fi
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/po'
+Making install in lib
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+/usr/bin/make  install-recursive
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+if test yes = no; then \
+  case 'linux-gnu' in \
+    darwin[56]*) \
+      need_charset_alias=true ;; \
+    darwin* | cygwin* | mingw* | pw32* | cegcc*) \
+      need_charset_alias=false ;; \
+    *) \
+      need_charset_alias=true ;; \
+  esac ; \
+else \
+  need_charset_alias=false ; \
+fi ; \
+if $need_charset_alias; then \
+  /bin/sh /builddir/build/BUILD/parted-2.3/build-aux/install-sh -d /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64 ; \
+fi ; \
+if test -f /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.alias; then \
+  sed -f ref-add.sed /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.alias > /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.tmp ; \
+  /usr/bin/install -c -m 644 /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.tmp /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.alias ; \
+  rm -f /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.tmp ; \
+else \
+  if $need_charset_alias; then \
+    sed -f ref-add.sed charset.alias > /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.tmp ; \
+    /usr/bin/install -c -m 644 /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.tmp /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.alias ; \
+    rm -f /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/charset.tmp ; \
+  fi ; \
+fi
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+Making install in libparted
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted'
+Makefile:1095: warning: overriding recipe for target `linux.lo'
+Makefile:1088: warning: ignoring old recipe for target `linux.lo'
+Making install in labels
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+/usr/bin/make  install-am
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+Making install in fs
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+Making install in amiga
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+Making install in ext2
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+Making install in ufs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+Making install in fat
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+Making install in ntfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+Making install in hfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+Making install in linux_swap
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+Making install in xfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+Making install in jfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+Making install in reiserfs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+make[5]: Nothing to be done for `install-exec-am'.
+make[5]: Nothing to be done for `install-data-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+Making install in .
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted'
+Makefile:1095: warning: overriding recipe for target `linux.lo'
+Makefile:1088: warning: ignoring old recipe for target `linux.lo'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted'
+Makefile:1095: warning: overriding recipe for target `linux.lo'
+Makefile:1088: warning: ignoring old recipe for target `linux.lo'
+test -z "/lib64" || /bin/mkdir -p "/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64"
+ /bin/sh ../libtool   --mode=install /usr/bin/install -c   libparted.la '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64'
+libtool: install: /usr/bin/install -c .libs/libparted.so.0.0.1 /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/libparted.so.0.0.1
+libtool: install: (cd /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64 && { ln -s -f libparted.so.0.0.1 libparted.so.0 || { rm -f libparted.so.0 && ln -s libparted.so.0.0.1 libparted.so.0; }; })
+libtool: install: (cd /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64 && { ln -s -f libparted.so.0.0.1 libparted.so || { rm -f libparted.so && ln -s libparted.so.0.0.1 libparted.so; }; })
+libtool: install: /usr/bin/install -c .libs/libparted.lai /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/libparted.la
+libtool: install: warning: remember to run `libtool --finish /lib64'
+make[4]: Nothing to be done for `install-data-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted'
+Making install in parted
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/parted'
+/usr/bin/make  install-am
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/parted'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/parted'
+test -z "/sbin" || /bin/mkdir -p "/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin"
+  /bin/sh ../libtool   --mode=install /usr/bin/install -c parted '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin'
+libtool: install: warning: `../libparted/libparted.la' has not been installed in `/lib64'
+libtool: install: /usr/bin/install -c .libs/parted /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin/parted
+make[4]: Nothing to be done for `install-data-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/parted'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/parted'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/parted'
+Making install in partprobe
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/partprobe'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/partprobe'
+test -z "/sbin" || /bin/mkdir -p "/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin"
+  /bin/sh ../libtool   --mode=install /usr/bin/install -c partprobe '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin'
+libtool: install: warning: `../libparted/libparted.la' has not been installed in `/lib64'
+libtool: install: /usr/bin/install -c .libs/partprobe /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin/partprobe
+make[3]: Nothing to be done for `install-data-am'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/partprobe'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/partprobe'
+Making install in include
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/include'
+Making install in parted
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[4]: Nothing to be done for `install-exec-am'.
+test -z "/usr/include/parted" || /bin/mkdir -p "/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/include/parted"
+ /usr/bin/install -c -m 644 constraint.h debug.h device.h disk.h exception.h filesys.h geom.h natmath.h timer.h unit.h parted.h '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/include/parted'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/include'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/include'
+make[4]: Nothing to be done for `install-exec-am'.
+make[4]: Nothing to be done for `install-data-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/include'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/include'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/include'
+Making install in doc
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/doc'
+Making install in C
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/C'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/C'
+make[4]: Nothing to be done for `install-exec-am'.
+test -z "/usr/share/man/man8" || /bin/mkdir -p "/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/man/man8"
+ /usr/bin/install -c -m 644 parted.8 partprobe.8 '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/man/man8'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/C'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/C'
+Making install in pt_BR
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+for po in `ls -1 ./*.pt_BR.po 2>/dev/null`; do \
+	/usr/bin/make $(basename ${po%.pt_BR.po}); \
+done
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+make[4]: Nothing to be done for `install-exec-am'.
+make[4]: Nothing to be done for `install-data-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/doc'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/doc'
+make[4]: Nothing to be done for `install-exec-am'.
+test -z "/usr/share/info" || /bin/mkdir -p "/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/info"
+ /usr/bin/install -c -m 644 ./parted.info '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/info'
+ install-info --info-dir='/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/info' '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/info/parted.info'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc'
+Making install in debug
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/debug'
+Making install in clearfat
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+make[4]: Nothing to be done for `install-exec-am'.
+make[4]: Nothing to be done for `install-data-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+Making install in test
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[4]: Nothing to be done for `install-exec-am'.
+make[4]: Nothing to be done for `install-data-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/debug'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/debug'
+make[4]: Nothing to be done for `install-exec-am'.
+make[4]: Nothing to be done for `install-data-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug'
+Making install in tests
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3/tests'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/tests'
+make[3]: Nothing to be done for `install-exec-am'.
+make[3]: Nothing to be done for `install-data-am'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/tests'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3/tests'
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3'
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3'
+make[3]: Nothing to be done for `install-exec-am'.
+test -z "/lib64/pkgconfig" || /bin/mkdir -p "/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/pkgconfig"
+ /usr/bin/install -c -m 644 libparted.pc '/builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/pkgconfig'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3'
+make[1]: Leaving directory `/builddir/build/BUILD/parted-2.3'
++ /bin/mkdir -p /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/lib64
++ /bin/mv /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/libparted.so /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/lib64
++ /bin/mv /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/pkgconfig /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/lib64
++ pushd /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/lib64
+~/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/lib64 ~/build/BUILD/parted-2.3
+++ readlink libparted.so
++ reallibrary=libparted.so.0.0.1
++ /bin/rm -f libparted.so
++ ln -sf ../../lib64/libparted.so.0.0.1 libparted.so
++ popd
+~/build/BUILD/parted-2.3
++ /bin/rm -rf /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/libparted.la
++ /bin/rm -rf /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/share/info/dir
++ /bin/rm -rf /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/bin/label
++ /bin/rm -rf /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/usr/bin/disk
++ /usr/lib/rpm/find-lang.sh /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64 parted
++ /usr/lib/rpm/find-debuginfo.sh --strict-build-id /builddir/build/BUILD/parted-2.3
+extracting debug info from /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin/partprobe
+extracting debug info from /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/sbin/parted
+extracting debug info from /builddir/build/BUILDROOT/parted-2.3-11.fc15.x86_64/lib64/libparted.so.0.0.1
+symlinked /usr/lib/debug/lib64/libparted.so.0.0.1.debug to /usr/lib/debug/usr/lib64/libparted.so.debug
+symlinked /usr/lib/debug/lib64/libparted.so.0.0.1.debug to /usr/lib/debug/lib64/libparted.so.0.debug
+3761 blocks
++ /usr/lib/rpm/check-buildroot
++ /usr/lib/rpm/redhat/brp-compress
++ /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip
++ /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1
++ /usr/lib/rpm/redhat/brp-python-hardlink
++ /usr/lib/rpm/redhat/brp-java-repack-jars
+Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.Qq2pbt
++ umask 022
++ cd /builddir/build/BUILD
++ cd parted-2.3
++ unset DISPLAY
+++ pwd
++ export LD_LIBRARY_PATH=/builddir/build/BUILD/parted-2.3/libparted/.libs
++ LD_LIBRARY_PATH=/builddir/build/BUILD/parted-2.3/libparted/.libs
++ make check
+make ss-1024
+make[1]: Entering directory `/builddir/build/BUILD/parted-2.3'
+PARTED_SECTOR_SIZE=1024 make check-recursive
+make[2]: Entering directory `/builddir/build/BUILD/parted-2.3'
+Making check in po
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/po'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/po'
+Making check in lib
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+make  check-recursive
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/lib'
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/lib'
+Making check in libparted
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted'
+Makefile:1095: warning: overriding recipe for target `linux.lo'
+Makefile:1088: warning: ignoring old recipe for target `linux.lo'
+Making check in labels
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make  check-am
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make[5]: Nothing to be done for `check-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/labels'
+Making check in fs
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+Making check in amiga
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/amiga'
+Making check in ext2
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ext2'
+Making check in ufs
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ufs'
+Making check in fat
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/fat'
+Making check in ntfs
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/ntfs'
+Making check in hfs
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/hfs'
+Making check in linux_swap
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/linux_swap'
+Making check in xfs
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/xfs'
+Making check in jfs
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/jfs'
+Making check in reiserfs
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+make[5]: Nothing to be done for `check'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs/reiserfs'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+make[5]: Nothing to be done for `check-am'.
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted/fs'
+Making check in .
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/libparted'
+Makefile:1095: warning: overriding recipe for target `linux.lo'
+Makefile:1088: warning: ignoring old recipe for target `linux.lo'
+make[4]: Nothing to be done for `check-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/libparted'
+Making check in parted
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/parted'
+make  check-am
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/parted'
+make[4]: Nothing to be done for `check-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/parted'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/parted'
+Making check in partprobe
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/partprobe'
+make[3]: Nothing to be done for `check'.
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/partprobe'
+Making check in include
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/include'
+Making check in parted
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[4]: Nothing to be done for `check'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/include/parted'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/include'
+make[4]: Nothing to be done for `check-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/include'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/include'
+Making check in doc
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/doc'
+Making check in C
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/C'
+make[4]: Nothing to be done for `check'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/C'
+Making check in pt_BR
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+for po in `ls -1 ./*.pt_BR.po 2>/dev/null`; do \
+	make $(basename ${po%.pt_BR.po}); \
+done
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc/pt_BR'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/doc'
+make[4]: Nothing to be done for `check-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/doc'
+Making check in debug
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/debug'
+Making check in clearfat
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+make[4]: Nothing to be done for `check'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/clearfat'
+Making check in test
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[4]: Nothing to be done for `check'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug/test'
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/debug'
+make[4]: Nothing to be done for `check-am'.
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/debug'
+Making check in tests
+make[3]: Entering directory `/builddir/build/BUILD/parted-2.3/tests'
+make  print-align print-max dup-clobber
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/tests'
+  CC     print-align.o
+gcc -std=gnu99  -I. -I../lib  -I../lib -I../include    -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c print-align.c
+  CCLD   print-align
+  CC     print-max.o
+gcc -std=gnu99  -I. -I../lib  -I../lib -I../include    -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c print-max.c
+  CCLD   print-max
+  CC     dup-clobber.o
+gcc -std=gnu99  -I. -I../lib  -I../lib -I../include    -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wno-unused-but-set-variable -c dup-clobber.c
+  CCLD   dup-clobber
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/tests'
+make  check-TESTS
+make[4]: Entering directory `/builddir/build/BUILD/parted-2.3/tests'
+make[5]: Entering directory `/builddir/build/BUILD/parted-2.3/tests'
+PASS: help-version
+PASS: t0000-basic.sh
+PASS: t0001-tiny.sh
+PASS: t0010-script-no-ctrl-chars.sh
+PASS: t0100-print.sh
+PASS: t0200-gpt.sh
+PASS: t0201-gpt.sh
+PASS: t0202-gpt-pmbr.sh
+FAIL: t0203-gpt-tiny-device-abort.sh
+PASS: t0205-gpt-list-clobbers-pmbr.sh
+PASS: t0206-gpt-print-with-corrupt-primary-clobbers-pmbr.sh
+PASS: t0220-gpt-msftres.sh
+PASS: t0250-gpt.sh
+PASS: t0280-gpt-corrupt.sh
+PASS: t0300-dos-on-gpt.sh
+PASS: t0400-loop-clobber-infloop.sh
+PASS: t0500-dup-clobber.sh
+PASS: t1100-busy-label.sh
+./t1700-ext-probe.sh: skipping test: FS test with sector size != 512
+SKIP: t1700-ext-probe.sh
+./t2100-mkswap.sh: skipping test: FS test with sector size != 512
+SKIP: t2100-mkswap.sh
+PASS: t2200-dos-label-recog.sh
+FAIL: t2201-pc98-label-recog.sh
+./t2300-dos-label-extended-bootcode.sh: skipping test: FS test with sector size != 512
+SKIP: t2300-dos-label-extended-bootcode.sh
+./t2310-dos-extended-2-sector-min-offset.sh: skipping test: must be run as root
+SKIP: t2310-dos-extended-2-sector-min-offset.sh
+PASS: t2400-dos-hfs-partition-type.sh
+./t3000-resize-fs.sh: skipping test: This test requires HFS support.
+SKIP: t3000-resize-fs.sh
+./t3200-type-change.sh: skipping test: must be run as root
+SKIP: t3200-type-change.sh
+PASS: t3300-palo-prep.sh
+PASS: t3310-flags.sh
+PASS: t4000-sun-raid-type.sh
+PASS: t4001-sun-vtoc.sh
+PASS: t4100-msdos-partition-limits.sh
+PASS: t4100-dvh-partition-limits.sh
+PASS: t4100-msdos-starting-sector.sh
+PASS: t4200-partprobe.sh
+PASS: t5000-tags.sh
+./t6000-dm.sh: skipping test: must be run as root
+SKIP: t6000-dm.sh
+PASS: t7000-scripting.sh
+./t8000-loop.sh: skipping test: must be run as root
+SKIP: t8000-loop.sh
+./t9010-big-sector.sh: skipping test: must be run as root
+SKIP: t9010-big-sector.sh
+./t9020-alignment.sh: skipping test: must be run as root
+SKIP: t9020-alignment.sh
+PASS: t9021-maxima.sh
+./t9030-align-check.sh: skipping test: must be run as root
+SKIP: t9030-align-check.sh
+./t9040-many-partitions.sh: skipping test: must be run as root
+SKIP: t9040-many-partitions.sh
+FAIL: t9041-undetected-in-use-16th-partition.sh
+==========================================
+   GNU parted 2.3: tests/test-suite.log   
+==========================================
+3 of 33 tests failed.  (12 tests were not run).  
+.. contents:: :depth: 2
+FAIL: t0203-gpt-tiny-device-abort.sh (exit: 1)
+==============================================
+++ initial_cwd_=/builddir/build/BUILD/parted-2.3/tests
++++ expr ././t0203-gpt-tiny-device-abort.sh : '.*/\(.*\)$'
+++ ME_=t0203-gpt-tiny-device-abort.sh
++++ testdir_prefix_
++++ printf gt
+++ pfx_=gt
++++ mktempd_ /builddir/build/BUILD/parted-2.3/tests gt-t0203-gpt-tiny-device-abort.sh.XXXX
++++ case $# in
++++ destdir_=/builddir/build/BUILD/parted-2.3/tests
++++ template_=gt-t0203-gpt-tiny-device-abort.sh.XXXX
++++ MAX_TRIES_=4
++++ case $destdir_ in
++++ case $template_ in
++++ fail=0
+++++ unset TMPDIR
+++++ mktemp -d -t -p /builddir/build/BUILD/parted-2.3/tests gt-t0203-gpt-tiny-device-abort.sh.XXXX
++++ d=/builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
++++ case $d in
++++ test -d /builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
+++++ ls -dgo /builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
+++++ tr S -
++++ perms='drwx------ 2 4096 Oct 13 17:04 /builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT'
++++ case $perms in
++++ test 0 = 0
++++ echo /builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
++++ return
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
+++ cd /builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
+++ trap remove_tmp_ 0
+++ for sig_ in 1 2 3 13 15
++++ expr 1 + 128
+++ eval 'trap '\''Exit 129'\'' 1'
++++ trap 'Exit 129' 1
+++ for sig_ in 1 2 3 13 15
++++ expr 2 + 128
+++ eval 'trap '\''Exit 130'\'' 2'
++++ trap 'Exit 130' 2
+++ for sig_ in 1 2 3 13 15
++++ expr 3 + 128
+++ eval 'trap '\''Exit 131'\'' 3'
++++ trap 'Exit 131' 3
+++ for sig_ in 1 2 3 13 15
++++ expr 13 + 128
+++ eval 'trap '\''Exit 141'\'' 13'
++++ trap 'Exit 141' 13
+++ for sig_ in 1 2 3 13 15
++++ expr 15 + 128
+++ eval 'trap '\''Exit 143'\'' 15'
++++ trap 'Exit 143' 15
++ path_prepend_ ../parted
++ test 1 '!=' 0
++ path_dir_=../parted
++ case $path_dir_ in
+++ cd /builddir/build/BUILD/parted-2.3/tests/../parted
+++ echo /builddir/build/BUILD/parted-2.3/parted
++ abs_path_dir_=/builddir/build/BUILD/parted-2.3/parted
++ case $abs_path_dir_ in
++ PATH=/builddir/build/BUILD/parted-2.3/parted:/builddir/build/BUILD/parted-2.3/parted:/usr/lib64/ccache:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin:/usr/local/sbin:/builddir/.local/bin:/builddir/bin
++ create_exe_shims_ /builddir/build/BUILD/parted-2.3/parted
++ case $EXEEXT in
++ return 0
++ shift
++ test 0 '!=' 0
++ export PATH
++ N=2M
++ dev=loop-file
++ dd if=/dev/null of=loop-file bs=1 seek=2M
+0+0 records in
+0+0 records out
+0 bytes (0 B) copied, 1.4308e-05 s, 0.0 kB/s
++ parted -s loop-file mklabel gpt
++ compare out /dev/null
++ diff -u out /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=33
+33+0 records in
+33+0 records out
+16896 bytes (17 kB) copied, 0.000159723 s, 106 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=34
+34+0 records in
+34+0 records out
+17408 bytes (17 kB) copied, 0.000203717 s, 85.5 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=35
+35+0 records in
+35+0 records out
+17920 bytes (18 kB) copied, 9.7233e-05 s, 184 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=67
+67+0 records in
+67+0 records out
+34304 bytes (34 kB) copied, 0.000143722 s, 239 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=68
+68+0 records in
+68+0 records out
+34816 bytes (35 kB) copied, 0.000327237 s, 106 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=69
+69+0 records in
+69+0 records out
+35328 bytes (35 kB) copied, 0.00033949 s, 104 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=101
+101+0 records in
+101+0 records out
+51712 bytes (52 kB) copied, 0.000218617 s, 237 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=102
+102+0 records in
+102+0 records out
+52224 bytes (52 kB) copied, 0.000306859 s, 170 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ for i in 33 34 35 67 68 69 101 102 103
++ dd if=loop-file of=bad count=103
+103+0 records in
+103+0 records out
+52736 bytes (53 kB) copied, 0.000318014 s, 166 MB/s
++ printf 'i\no\n'
++ parted ---pretend-input-tty bad u s p
++ fail=1
++ compare err /dev/null
++ diff -u err /dev/null
++ Exit 1
++ set +e
++ exit 1
++ exit 1
++ remove_tmp_
++ __st=1
++ cleanup_
++ :
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/gt-t0203-gpt-tiny-device-abort.sh.lUrT
++ exit 1
+SKIP: t1700-ext-probe.sh (exit: 77)
+===================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t1700-ext-probe.sh
++++ sed 's,.*/,,'
+++ this_test=t1700-ext-probe.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t1700-ext-probe.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t1700-ext-probe.sh.aOB7dPwaYy
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t1700-ext-probe.sh
+++++ ME=t1700-ext-probe.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t1700-ext-probe.sh.aOB7dPwaYy
+++ diff --version
+++ grep GNU
++ require_512_byte_sector_size_
++ test 1024 = 512
++ skip_test_ FS test with sector size '!=' 512
++ echo './t1700-ext-probe.sh: skipping test: FS' test with sector size '!=' 512
++ head -1
++ echo './t1700-ext-probe.sh: skipping test: FS' test with sector size '!=' 512
+./t1700-ext-probe.sh: skipping test: FS test with sector size != 512
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t1700-ext-probe.sh.aOB7dPwaYy
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t1700-ext-probe.sh.aOB7dPwaYy
++ exit 77
+SKIP: t2100-mkswap.sh (exit: 77)
+================================
+./t2100-mkswap.sh: skipping test: FS test with sector size != 512
+FAIL: t2201-pc98-label-recog.sh (exit: 1)
+=========================================
+++ initial_cwd_=/builddir/build/BUILD/parted-2.3/tests
++++ expr ././t2201-pc98-label-recog.sh : '.*/\(.*\)$'
+++ ME_=t2201-pc98-label-recog.sh
++++ testdir_prefix_
++++ printf gt
+++ pfx_=gt
++++ mktempd_ /builddir/build/BUILD/parted-2.3/tests gt-t2201-pc98-label-recog.sh.XXXX
++++ case $# in
++++ destdir_=/builddir/build/BUILD/parted-2.3/tests
++++ template_=gt-t2201-pc98-label-recog.sh.XXXX
++++ MAX_TRIES_=4
++++ case $destdir_ in
++++ case $template_ in
++++ fail=0
+++++ unset TMPDIR
+++++ mktemp -d -t -p /builddir/build/BUILD/parted-2.3/tests gt-t2201-pc98-label-recog.sh.XXXX
++++ d=/builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
++++ case $d in
++++ test -d /builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
+++++ ls -dgo /builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
+++++ tr S -
++++ perms='drwx------ 2 4096 Oct 13 17:04 /builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv'
++++ case $perms in
++++ test 0 = 0
++++ echo /builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
++++ return
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
+++ cd /builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
+++ trap remove_tmp_ 0
+++ for sig_ in 1 2 3 13 15
++++ expr 1 + 128
+++ eval 'trap '\''Exit 129'\'' 1'
++++ trap 'Exit 129' 1
+++ for sig_ in 1 2 3 13 15
++++ expr 2 + 128
+++ eval 'trap '\''Exit 130'\'' 2'
++++ trap 'Exit 130' 2
+++ for sig_ in 1 2 3 13 15
++++ expr 3 + 128
+++ eval 'trap '\''Exit 131'\'' 3'
++++ trap 'Exit 131' 3
+++ for sig_ in 1 2 3 13 15
++++ expr 13 + 128
+++ eval 'trap '\''Exit 141'\'' 13'
++++ trap 'Exit 141' 13
+++ for sig_ in 1 2 3 13 15
++++ expr 15 + 128
+++ eval 'trap '\''Exit 143'\'' 15'
++++ trap 'Exit 143' 15
++ path_prepend_ ../parted
++ test 1 '!=' 0
++ path_dir_=../parted
++ case $path_dir_ in
+++ cd /builddir/build/BUILD/parted-2.3/tests/../parted
+++ echo /builddir/build/BUILD/parted-2.3/parted
++ abs_path_dir_=/builddir/build/BUILD/parted-2.3/parted
++ case $abs_path_dir_ in
++ PATH=/builddir/build/BUILD/parted-2.3/parted:/builddir/build/BUILD/parted-2.3/parted:/usr/lib64/ccache:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin:/usr/local/sbin:/builddir/.local/bin:/builddir/bin
++ create_exe_shims_ /builddir/build/BUILD/parted-2.3/parted
++ case $EXEEXT in
++ return 0
++ shift
++ test 0 '!=' 0
++ export PATH
++ require_512_byte_sector_size_
+./t2201-pc98-label-recog.sh: line 21: require_512_byte_sector_size_: command not found
++ ss=
++ N=8192
++ dev=loop-file
++ dd if=/dev/null of=loop-file bs= seek=8192
++ fail=1
++ parted -s loop-file mklabel pc98
++ fail=1
++ compare out /dev/null
++ diff -u out /dev/null
+--- out	2011-10-13 17:04:47.820221060 -0700
++++ /dev/null	2011-10-13 17:02:34.400641113 -0700
+@@ -1 +0,0 @@
+-Error: Could not stat device loop-file - No such file or directory.
++ fail=1
++ parted -s loop-file p
++ grep '^Partition Table: pc98'
++ fail=1
++ for s in '"Linux 98"' '"GRUB/98 "'
++ printf 'Linux 98'
++ dd bs=1c seek=4 of=loop-file conv=notrunc
+8+0 records in
+8+0 records out
+8 bytes (8 B) copied, 6.0853e-05 s, 131 kB/s
++ parted -s loop-file p
++ grep '^Partition Table: pc98'
++ fail=1
++ for s in '"Linux 98"' '"GRUB/98 "'
++ printf 'GRUB/98 '
++ dd bs=1c seek=4 of=loop-file conv=notrunc
+8+0 records in
+8+0 records out
+8 bytes (8 B) copied, 2.3879e-05 s, 335 kB/s
++ parted -s loop-file p
++ grep '^Partition Table: pc98'
++ fail=1
++ Exit 1
++ set +e
++ exit 1
++ exit 1
++ remove_tmp_
++ __st=1
++ cleanup_
++ :
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/gt-t2201-pc98-label-recog.sh.j6kv
++ exit 1
+SKIP: t2300-dos-label-extended-bootcode.sh (exit: 77)
+=====================================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t2300-dos-label-extended-bootcode.sh
++++ sed 's,.*/,,'
+++ this_test=t2300-dos-label-extended-bootcode.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t2300-dos-label-extended-bootcode.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t2300-dos-label-extended-bootcode.sh.g2XRsY9rVv
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t2300-dos-label-extended-bootcode.sh
+++++ ME=t2300-dos-label-extended-bootcode.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t2300-dos-label-extended-bootcode.sh.g2XRsY9rVv
+++ diff --version
+++ grep GNU
++ require_512_byte_sector_size_
++ test 1024 = 512
++ skip_test_ FS test with sector size '!=' 512
++ echo './t2300-dos-label-extended-bootcode.sh: skipping test: FS' test with sector size '!=' 512
++ head -1
++ echo './t2300-dos-label-extended-bootcode.sh: skipping test: FS' test with sector size '!=' 512
+./t2300-dos-label-extended-bootcode.sh: skipping test: FS test with sector size != 512
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t2300-dos-label-extended-bootcode.sh.g2XRsY9rVv
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t2300-dos-label-extended-bootcode.sh.g2XRsY9rVv
++ exit 77
+SKIP: t2310-dos-extended-2-sector-min-offset.sh (exit: 77)
+==========================================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t2310-dos-extended-2-sector-min-offset.sh
++++ sed 's,.*/,,'
+++ this_test=t2310-dos-extended-2-sector-min-offset.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t2310-dos-extended-2-sector-min-offset.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t2310-dos-extended-2-sector-min-offset.sh.2yMhhiToye
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t2310-dos-extended-2-sector-min-offset.sh
+++++ ME=t2310-dos-extended-2-sector-min-offset.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t2310-dos-extended-2-sector-min-offset.sh.2yMhhiToye
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t2310-dos-extended-2-sector-min-offset.sh: skipping test: must be run as root'
++ head -1
++ echo './t2310-dos-extended-2-sector-min-offset.sh: skipping test: must be run as root'
+./t2310-dos-extended-2-sector-min-offset.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t2310-dos-extended-2-sector-min-offset.sh.2yMhhiToye
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t2310-dos-extended-2-sector-min-offset.sh.2yMhhiToye
++ exit 77
+SKIP: t3000-resize-fs.sh (exit: 77)
+===================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t3000-resize-fs.sh
++++ sed 's,.*/,,'
+++ this_test=t3000-resize-fs.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t3000-resize-fs.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t3000-resize-fs.sh.nW5N4yMaYo
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t3000-resize-fs.sh
+++++ ME=t3000-resize-fs.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t3000-resize-fs.sh.nW5N4yMaYo
+++ diff --version
+++ grep GNU
++ require_hfs_
++ mkfs.hfs
++ grep '^usage:'
++ skip_test_ 'This test requires HFS support.'
++ echo './t3000-resize-fs.sh: skipping test: This test requires HFS support.'
++ head -1
++ echo './t3000-resize-fs.sh: skipping test: This test requires HFS support.'
+./t3000-resize-fs.sh: skipping test: This test requires HFS support.
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t3000-resize-fs.sh.nW5N4yMaYo
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t3000-resize-fs.sh.nW5N4yMaYo
++ exit 77
+SKIP: t3200-type-change.sh (exit: 77)
+=====================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t3200-type-change.sh
++++ sed 's,.*/,,'
+++ this_test=t3200-type-change.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t3200-type-change.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t3200-type-change.sh.bjyT88fg4l
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t3200-type-change.sh
+++++ ME=t3200-type-change.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t3200-type-change.sh.bjyT88fg4l
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t3200-type-change.sh: skipping test: must be run as root'
++ head -1
++ echo './t3200-type-change.sh: skipping test: must be run as root'
+./t3200-type-change.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t3200-type-change.sh.bjyT88fg4l
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t3200-type-change.sh.bjyT88fg4l
++ exit 77
+SKIP: t6000-dm.sh (exit: 77)
+============================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t6000-dm.sh
++++ sed 's,.*/,,'
+++ this_test=t6000-dm.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t6000-dm.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t6000-dm.sh.AVpRG8kcc2
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t6000-dm.sh
+++++ ME=t6000-dm.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t6000-dm.sh.AVpRG8kcc2
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t6000-dm.sh: skipping test: must be run as root'
++ head -1
++ echo './t6000-dm.sh: skipping test: must be run as root'
+./t6000-dm.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t6000-dm.sh.AVpRG8kcc2
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t6000-dm.sh.AVpRG8kcc2
++ exit 77
+SKIP: t8000-loop.sh (exit: 77)
+==============================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t8000-loop.sh
++++ sed 's,.*/,,'
+++ this_test=t8000-loop.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t8000-loop.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t8000-loop.sh.ZG27q7cJHN
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t8000-loop.sh
+++++ ME=t8000-loop.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t8000-loop.sh.ZG27q7cJHN
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t8000-loop.sh: skipping test: must be run as root'
++ head -1
++ echo './t8000-loop.sh: skipping test: must be run as root'
+./t8000-loop.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t8000-loop.sh.ZG27q7cJHN
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t8000-loop.sh.ZG27q7cJHN
++ exit 77
+SKIP: t9010-big-sector.sh (exit: 77)
+====================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t9010-big-sector.sh
++++ sed 's,.*/,,'
+++ this_test=t9010-big-sector.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t9010-big-sector.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t9010-big-sector.sh.SYZQGjQYSX
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t9010-big-sector.sh
+++++ ME=t9010-big-sector.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t9010-big-sector.sh.SYZQGjQYSX
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t9010-big-sector.sh: skipping test: must be run as root'
++ head -1
++ echo './t9010-big-sector.sh: skipping test: must be run as root'
+./t9010-big-sector.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t9010-big-sector.sh.SYZQGjQYSX
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t9010-big-sector.sh.SYZQGjQYSX
++ exit 77
+SKIP: t9020-alignment.sh (exit: 77)
+===================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t9020-alignment.sh
++++ sed 's,.*/,,'
+++ this_test=t9020-alignment.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t9020-alignment.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t9020-alignment.sh.dL4sXynC34
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t9020-alignment.sh
+++++ ME=t9020-alignment.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t9020-alignment.sh.dL4sXynC34
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t9020-alignment.sh: skipping test: must be run as root'
++ head -1
++ echo './t9020-alignment.sh: skipping test: must be run as root'
+./t9020-alignment.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t9020-alignment.sh.dL4sXynC34
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t9020-alignment.sh.dL4sXynC34
++ exit 77
+SKIP: t9030-align-check.sh (exit: 77)
+=====================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t9030-align-check.sh
++++ sed 's,.*/,,'
+++ this_test=t9030-align-check.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t9030-align-check.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t9030-align-check.sh.dOEtLeyQLu
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t9030-align-check.sh
+++++ ME=t9030-align-check.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t9030-align-check.sh.dOEtLeyQLu
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t9030-align-check.sh: skipping test: must be run as root'
++ head -1
++ echo './t9030-align-check.sh: skipping test: must be run as root'
+./t9030-align-check.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t9030-align-check.sh.dOEtLeyQLu
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t9030-align-check.sh.dOEtLeyQLu
++ exit 77
+SKIP: t9040-many-partitions.sh (exit: 77)
+=========================================
++ parted --version
+parted (GNU parted) 2.3
+Copyright (C) 2010 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Written by <http://git.debian.org/?p=parted/parted.git;a=blob_plain;f=AUTHORS>.
++ : .
++ . ./t-lib.sh
+++ unset function_test
+++ eval 'function_test() { return 11; }; function_test'
++++ function_test
++++ return 11
+++ test 11 '!=' 11
++++ pwd
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests
++++ this_test_
++++ echo ././t9040-many-partitions.sh
++++ sed 's,.*/,,'
+++ this_test=t9040-many-partitions.sh
++++ mktemp -d --tmp=/builddir/build/BUILD/parted-2.3/tests pe-t9040-many-partitions.sh.XXXXXXXXXX
+++ t_=/builddir/build/BUILD/parted-2.3/tests/pe-t9040-many-partitions.sh.K8yamualkH
+++ cleanup_eval_=:
+++ . ./t-local.sh
++++ sector_size_=1024
++++ scsi_debug_lock_file_=/builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
++++ scsi_debug_modprobe_succeeded_=
++++ cleanup_eval_=':; scsi_debug_cleanup_'
++++ . ./t-lvm.sh
+++++ export LVM_SUPPRESS_FD_WARNINGS=1
+++++ LVM_SUPPRESS_FD_WARNINGS=1
++++++ basename ./t9040-many-partitions.sh
+++++ ME=t9040-many-partitions.sh
+++ trap remove_tmp_ 0
+++ trap 'Exit $?' 1 2 13 15
+++ cd /builddir/build/BUILD/parted-2.3/tests/pe-t9040-many-partitions.sh.K8yamualkH
+++ diff --version
+++ grep GNU
++ require_root_
++ uid_is_privileged_
+++ id -u
++ my_uid=500
++ case $my_uid in
++ return 1
++ skip_test_ 'must be run as root'
++ echo './t9040-many-partitions.sh: skipping test: must be run as root'
++ head -1
++ echo './t9040-many-partitions.sh: skipping test: must be run as root'
+./t9040-many-partitions.sh: skipping test: must be run as root
++ Exit 77
++ set +e
++ exit 77
++ exit 77
++ remove_tmp_
++ __st=77
++ cleanup_
++ :
++ test -n ':; scsi_debug_cleanup_'
++ eval ':; scsi_debug_cleanup_'
+++ :
+++ scsi_debug_cleanup_
+++ rm -f /builddir/build/BUILD/parted-2.3/tests/scsi_debug.lock
+++ test -z ''
+++ return
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/pe-t9040-many-partitions.sh.K8yamualkH
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/pe-t9040-many-partitions.sh.K8yamualkH
++ exit 77
+FAIL: t9041-undetected-in-use-16th-partition.sh (exit: 1)
+=========================================================
+++ initial_cwd_=/builddir/build/BUILD/parted-2.3/tests
++++ expr ././t9041-undetected-in-use-16th-partition.sh : '.*/\(.*\)$'
+++ ME_=t9041-undetected-in-use-16th-partition.sh
++++ testdir_prefix_
++++ printf gt
+++ pfx_=gt
++++ mktempd_ /builddir/build/BUILD/parted-2.3/tests gt-t9041-undetected-in-use-16th-partition.sh.XXXX
++++ case $# in
++++ destdir_=/builddir/build/BUILD/parted-2.3/tests
++++ template_=gt-t9041-undetected-in-use-16th-partition.sh.XXXX
++++ MAX_TRIES_=4
++++ case $destdir_ in
++++ case $template_ in
++++ fail=0
+++++ unset TMPDIR
+++++ mktemp -d -t -p /builddir/build/BUILD/parted-2.3/tests gt-t9041-undetected-in-use-16th-partition.sh.XXXX
++++ d=/builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
++++ case $d in
++++ test -d /builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
+++++ ls -dgo /builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
+++++ tr S -
++++ perms='drwx------ 2 4096 Oct 13 17:04 /builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP'
++++ case $perms in
++++ test 0 = 0
++++ echo /builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
++++ return
+++ test_dir_=/builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
+++ cd /builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
+++ trap remove_tmp_ 0
+++ for sig_ in 1 2 3 13 15
++++ expr 1 + 128
+++ eval 'trap '\''Exit 129'\'' 1'
++++ trap 'Exit 129' 1
+++ for sig_ in 1 2 3 13 15
++++ expr 2 + 128
+++ eval 'trap '\''Exit 130'\'' 2'
++++ trap 'Exit 130' 2
+++ for sig_ in 1 2 3 13 15
++++ expr 3 + 128
+++ eval 'trap '\''Exit 131'\'' 3'
++++ trap 'Exit 131' 3
+++ for sig_ in 1 2 3 13 15
++++ expr 13 + 128
+++ eval 'trap '\''Exit 141'\'' 13'
++++ trap 'Exit 141' 13
+++ for sig_ in 1 2 3 13 15
++++ expr 15 + 128
+++ eval 'trap '\''Exit 143'\'' 15'
++++ trap 'Exit 143' 15
++ path_prepend_ ../parted
++ test 1 '!=' 0
++ path_dir_=../parted
++ case $path_dir_ in
+++ cd /builddir/build/BUILD/parted-2.3/tests/../parted
+++ echo /builddir/build/BUILD/parted-2.3/parted
++ abs_path_dir_=/builddir/build/BUILD/parted-2.3/parted
++ case $abs_path_dir_ in
++ PATH=/builddir/build/BUILD/parted-2.3/parted:/builddir/build/BUILD/parted-2.3/parted:/usr/lib64/ccache:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin:/usr/local/sbin:/builddir/.local/bin:/builddir/bin
++ create_exe_shims_ /builddir/build/BUILD/parted-2.3/parted
++ case $EXEEXT in
++ return 0
++ shift
++ test 0 '!=' 0
++ export PATH
++ require_root_
+./t9041-undetected-in-use-16th-partition.sh: line 21: require_root_: command not found
++ require_scsi_debug_module_
+./t9041-undetected-in-use-16th-partition.sh: line 22: require_scsi_debug_module_: command not found
++ grep '^#define USE_BLKID 1' /builddir/build/BUILD/parted-2.3/lib/config.h
++ ss=
++ partition_sectors=256
++ n_partitions=17
++ start=2048
++ gpt_slop=34
++ n_sectors=6434
+./t9041-undetected-in-use-16th-partition.sh: line 35: 1024 * 1024 / ss: division by 0 (error token is "ss")
++ remove_tmp_
++ __st=1
++ cleanup_
++ :
++ cd /builddir/build/BUILD/parted-2.3/tests
++ chmod -R u+rwx /builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
++ rm -rf /builddir/build/BUILD/parted-2.3/tests/gt-t9041-undetected-in-use-16th-partition.sh.1MnP
++ exit 1
+===================================
+3 of 33 tests failed
+(12 tests were not run)
+See tests/test-suite.log
+Please report to bug-parted at gnu.org
+===================================
+make[5]: Leaving directory `/builddir/build/BUILD/parted-2.3/tests'
+make[4]: Leaving directory `/builddir/build/BUILD/parted-2.3/tests'
+make[3]: Leaving directory `/builddir/build/BUILD/parted-2.3/tests'
+make[2]: Leaving directory `/builddir/build/BUILD/parted-2.3'
+make[1]: Leaving directory `/builddir/build/BUILD/parted-2.3'
+RPM build errors:
+make[5]: *** [test-suite.log] Error 1
+make[4]: *** [check-TESTS] Error 2
+make[3]: *** [check-am] Error 2
+make[2]: *** [check-recursive] Error 1
+make[1]: *** [ss-1024] Error 2
+make: *** [check-other-sector_sizes] Error 2
+error: Bad exit status from /var/tmp/rpm-tmp.Qq2pbt (%check)
+    Bad exit status from /var/tmp/rpm-tmp.Qq2pbt (%check)
+Child returncode was: 1
+EXCEPTION: Command failed. See logs for output.
+ # ['bash', '--login', '-c', 'rpmbuild -bb --target x86_64 --nodeps builddir/build/SPECS/parted.spec']
+Traceback (most recent call last):
+  File "/usr/lib/python2.7/site-packages/mockbuild/trace_decorator.py", line 70, in trace
+    result = func(*args, **kw)
+  File "/usr/lib/python2.7/site-packages/mockbuild/util.py", line 328, in do
+    raise mockbuild.exception.Error, ("Command failed. See logs for output.\n # %s" % (command,), child.returncode)
+Error: Command failed. See logs for output.
+ # ['bash', '--login', '-c', 'rpmbuild -bb --target x86_64 --nodeps builddir/build/SPECS/parted.spec']
+LEAVE do --> EXCEPTION RAISED
+
diff --git a/parted/2.3/11.fc15/root.log b/parted/2.3/11.fc15/root.log
new file mode 100644
index 0000000..ade7ec6
--- /dev/null
+++ b/parted/2.3/11.fc15/root.log
@@ -0,0 +1,698 @@
+INFO backend.py:837:  Mock Version: 1.1.15
+DEBUG backend.py:274:  rootdir = /extra/redhat/mock/fedora-15-x86_64/root/
+DEBUG backend.py:275:  resultdir = /home/bcl/Red_Hat/projs/fedora/parted/parted/2.3/11.fc15
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/cache//fedora-15-x86_64/ccache/
+DEBUG backend.py:281:  create skeleton dirs
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/var/lib/rpm
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/var/lib/rpm
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/var/lib/yum
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/var/lib/yum
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/var/lib/dbus
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/var/lib/dbus
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/var/log
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/var/log
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/var/lock/rpm
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/var/lock/rpm
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/etc/rpm
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/etc/rpm
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/tmp
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/var/tmp
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/var/tmp
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/etc/yum.repos.d
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/etc/yum.repos.d
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/etc/yum
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/etc/yum
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG backend.py:299:  touch required files
+DEBUG util.py:68:  touching file: /extra/redhat/mock/fedora-15-x86_64/root/etc/mtab
+DEBUG util.py:68:  touching file: /extra/redhat/mock/fedora-15-x86_64/root/etc/fstab
+DEBUG util.py:68:  touching file: /extra/redhat/mock/fedora-15-x86_64/root/var/log/yum.log
+DEBUG backend.py:311:  configure yum
+DEBUG backend.py:326:  configure yum rhnplugin
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/etc/yum/pluginconf.d
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/etc/yum/pluginconf.d
+DEBUG util.py:83:  remove tree: /extra/redhat/mock/fedora-15-x86_64/root/dev
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG backend.py:417:  kver == 2.6.40.4-5.fc15.x86_64
+DEBUG backend.py:719:  mount -n -t proc   mock_chroot_proc   /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:284:  Executing command: mount -n -t proc   mock_chroot_proc   /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n -t sysfs  mock_chroot_sysfs  /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG util.py:284:  Executing command: mount -n -t sysfs  mock_chroot_sysfs  /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/yum_cache/  /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/yum_cache/  /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /home/bcl/Red_Hat/projs/anaconda  /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:284:  Executing command: mount -n --bind /home/bcl/Red_Hat/projs/anaconda  /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /home/bcl/Red_Hat/projs/parted  /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:284:  Executing command: mount -n --bind /home/bcl/Red_Hat/projs/parted  /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/repo  /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/repo  /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/pungi  /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/pungi  /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /home/bcl/Red_Hat/scripts  /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:284:  Executing command: mount -n --bind /home/bcl/Red_Hat/scripts  /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/ccache/  /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/ccache/  /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:284:  Executing command: mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n -t tmpfs mock_chroot_shmfs /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:284:  Executing command: mount -n -t tmpfs mock_chroot_shmfs /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:769:  ['/usr/bin/yum', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', 'groupinstall', 'buildsys-build']
+DEBUG util.py:284:  Executing command: ['/usr/bin/yum', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', 'groupinstall', 'buildsys-build']
+DEBUG util.py:250:  Ignored option -c (probably due to merging -yc != -y -c)
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:   Package                Arch   Version                   Repository        Size
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:  Installing:
+DEBUG util.py:250:   bash                   x86_64 4.2.10-4.fc15             updates-released 980 k
+DEBUG util.py:250:   bzip2                  x86_64 1.0.6-3.fc15              fedora            48 k
+DEBUG util.py:250:   coreutils              x86_64 8.10-2.fc15               fedora           2.8 M
+DEBUG util.py:250:   cpio                   x86_64 2.11-3.fc15               fedora           203 k
+DEBUG util.py:250:   diffutils              x86_64 2.8.1-30.fc15             fedora           197 k
+DEBUG util.py:250:   fedora-release         noarch 15-3                      updates-released  25 k
+DEBUG util.py:250:   findutils              x86_64 1:4.5.9-3.fc15            fedora           452 k
+DEBUG util.py:250:   gawk                   x86_64 3.1.8-3.fc15              fedora           781 k
+DEBUG util.py:250:   gcc                    x86_64 4.6.1-9.fc15              updates-released  13 M
+DEBUG util.py:250:   gcc-c++                x86_64 4.6.1-9.fc15              updates-released 5.3 M
+DEBUG util.py:250:   grep                   x86_64 2.9-1.fc15                updates-released 282 k
+DEBUG util.py:250:   gzip                   x86_64 1.4-3.fc15                fedora           114 k
+DEBUG util.py:250:   info                   x86_64 4.13a-15.fc15             fedora           178 k
+DEBUG util.py:250:   make                   x86_64 1:3.82-4.fc15             fedora           413 k
+DEBUG util.py:250:   patch                  x86_64 2.6.1-9.fc15              fedora            91 k
+DEBUG util.py:250:   redhat-rpm-config      noarch 9.1.0-8.fc15              updates-released  64 k
+DEBUG util.py:250:   rpm-build              x86_64 4.9.1.2-1.fc15            updates-released 126 k
+DEBUG util.py:250:   sed                    x86_64 4.2.1-7.fc15              updates-released 214 k
+DEBUG util.py:250:   shadow-utils           x86_64 2:4.1.4.2-13.fc15         updates-released 869 k
+DEBUG util.py:250:   tar                    x86_64 2:1.26-2.fc15             updates-released 823 k
+DEBUG util.py:250:   unzip                  x86_64 6.0-4.fc15                fedora           151 k
+DEBUG util.py:250:   util-linux             x86_64 2.19.1-1.4.fc15           updates-released 1.5 M
+DEBUG util.py:250:   which                  x86_64 2.20-2.fc15               fedora            39 k
+DEBUG util.py:250:   xz                     x86_64 5.0.3-1.fc15              updates-released 181 k
+DEBUG util.py:250:  Installing for dependencies:
+DEBUG util.py:250:   audit-libs             x86_64 2.1.3-1.fc15              updates-released  62 k
+DEBUG util.py:250:   basesystem             noarch 10.0-3                    fedora           4.2 k
+DEBUG util.py:250:   binutils               x86_64 2.21.51.0.6-6.fc15        updates-released 3.3 M
+DEBUG util.py:250:   bzip2-libs             x86_64 1.0.6-3.fc15              fedora            37 k
+DEBUG util.py:250:   ca-certificates        noarch 2011.78-1.fc15            updates-released 368 k
+DEBUG util.py:250:   chkconfig              x86_64 1.3.52-1.fc15             fedora           156 k
+DEBUG util.py:250:   cloog-ppl              x86_64 0.15.9-3.fc15             fedora            92 k
+DEBUG util.py:250:   coreutils-libs         x86_64 8.10-2.fc15               fedora            47 k
+DEBUG util.py:250:   cpp                    x86_64 4.6.1-9.fc15              updates-released 4.3 M
+DEBUG util.py:250:   cracklib               x86_64 2.8.18-2.fc15             fedora            72 k
+DEBUG util.py:250:   cracklib-dicts         x86_64 2.8.18-2.fc15             fedora           3.5 M
+DEBUG util.py:250:   curl                   x86_64 7.21.3-12.fc15            updates-released 229 k
+DEBUG util.py:250:   cyrus-sasl-lib         x86_64 2.1.23-18.fc15            updates-released 136 k
+DEBUG util.py:250:   db4                    x86_64 4.8.30-3.fc15             fedora           586 k
+DEBUG util.py:250:   db4-utils              x86_64 4.8.30-3.fc15             fedora           130 k
+DEBUG util.py:250:   elfutils               x86_64 0.152-1.fc15              fedora           201 k
+DEBUG util.py:250:   elfutils-libelf        x86_64 0.152-1.fc15              fedora           169 k
+DEBUG util.py:250:   elfutils-libs          x86_64 0.152-1.fc15              fedora           180 k
+DEBUG util.py:250:   expat                  x86_64 2.0.1-11.fc15             fedora            75 k
+DEBUG util.py:250:   file                   x86_64 5.07-4.fc15               updates-released  48 k
+DEBUG util.py:250:   file-libs              x86_64 5.07-4.fc15               updates-released 321 k
+DEBUG util.py:250:   filesystem             x86_64 2.4.41-1.fc15             updates-released 1.0 M
+DEBUG util.py:250:   gamin                  x86_64 0.1.10-9.fc15             fedora           121 k
+DEBUG util.py:250:   gdb                    x86_64 7.3-43.fc15               updates-released 1.9 M
+DEBUG util.py:250:   gdbm                   x86_64 1.8.3-9.fc15              fedora            31 k
+DEBUG util.py:250:   glib2                  x86_64 2.28.8-1.fc15             updates-released 1.7 M
+DEBUG util.py:250:   glibc                  x86_64 2.14-5                    updates-released 3.3 M
+DEBUG util.py:250:   glibc-common           x86_64 2.14-5                    updates-released  11 M
+DEBUG util.py:250:   glibc-devel            x86_64 2.14-5                    updates-released 976 k
+DEBUG util.py:250:   glibc-headers          x86_64 2.14-5                    updates-released 597 k
+DEBUG util.py:250:   gmp                    x86_64 1:4.3.2-3.fc15            fedora           204 k
+DEBUG util.py:250:   gnupg2                 x86_64 2.0.18-1.fc15             updates-released 1.3 M
+DEBUG util.py:250:   kernel-headers         x86_64 2.6.40.6-0.fc15           updates-released 756 k
+DEBUG util.py:250:   keyutils-libs          x86_64 1.2-7.fc15                fedora            19 k
+DEBUG util.py:250:   krb5-libs              x86_64 1.9.1-5.fc15              updates-released 694 k
+DEBUG util.py:250:   libacl                 x86_64 2.2.49-11.fc15            updates-released  24 k
+DEBUG util.py:250:   libassuan              x86_64 2.0.0-4.fc15              fedora            57 k
+DEBUG util.py:250:   libattr                x86_64 2.4.44-7.fc15             fedora            15 k
+DEBUG util.py:250:   libblkid               x86_64 2.19.1-1.4.fc15           updates-released 125 k
+DEBUG util.py:250:   libcap                 x86_64 2.22-1.fc15               updates-released  39 k
+DEBUG util.py:250:   libcom_err             x86_64 1.41.14-2.fc15            fedora            35 k
+DEBUG util.py:250:   libcurl                x86_64 7.21.3-12.fc15            updates-released 184 k
+DEBUG util.py:250:   libdb                  x86_64 5.1.25-3.fc15             updates-released 604 k
+DEBUG util.py:250:   libffi                 x86_64 3.0.10-1.fc15             updates-released  25 k
+DEBUG util.py:250:   libgcc                 x86_64 4.6.1-9.fc15              updates-released  84 k
+DEBUG util.py:250:   libgcrypt              x86_64 1.4.6-1.fc15              fedora           228 k
+DEBUG util.py:250:   libgomp                x86_64 4.6.1-9.fc15              updates-released  95 k
+DEBUG util.py:250:   libgpg-error           x86_64 1.9-2.fc15                fedora            74 k
+DEBUG util.py:250:   libidn                 x86_64 1.19-2.fc15               fedora           205 k
+DEBUG util.py:250:   libmount               x86_64 2.19.1-1.4.fc15           updates-released 115 k
+DEBUG util.py:250:   libmpc                 x86_64 0.8.3-0.3.svn855.fc15     fedora            48 k
+DEBUG util.py:250:   libselinux             x86_64 2.0.99-4.fc15             fedora           110 k
+DEBUG util.py:250:   libsepol               x86_64 2.0.42-2.fc15             fedora           128 k
+DEBUG util.py:250:   libssh2                x86_64 1.2.7-1.fc15              fedora            77 k
+DEBUG util.py:250:   libstdc++              x86_64 4.6.1-9.fc15              updates-released 284 k
+DEBUG util.py:250:   libstdc++-devel        x86_64 4.6.1-9.fc15              updates-released 1.4 M
+DEBUG util.py:250:   libutempter            x86_64 1.1.5-5.fc15              fedora            22 k
+DEBUG util.py:250:   libuuid                x86_64 2.19.1-1.4.fc15           updates-released  64 k
+DEBUG util.py:250:   libxml2                x86_64 2.7.8-6.fc15              fedora           804 k
+DEBUG util.py:250:   lua                    x86_64 5.1.4-8.fc15              fedora           181 k
+DEBUG util.py:250:   mpfr                   x86_64 3.0.0-4.fc15              fedora           165 k
+DEBUG util.py:250:   ncurses                x86_64 5.8-2.20110319.fc15       fedora           280 k
+DEBUG util.py:250:   ncurses-base           x86_64 5.8-2.20110319.fc15       fedora            66 k
+DEBUG util.py:250:   ncurses-libs           x86_64 5.8-2.20110319.fc15       fedora           248 k
+DEBUG util.py:250:   nspr                   x86_64 4.8.8-1.fc15              updates-released 111 k
+DEBUG util.py:250:   nss                    x86_64 3.12.10-6.fc15            updates-released 765 k
+DEBUG util.py:250:   nss-softokn            x86_64 3.12.10-2.fc15            updates-released 173 k
+DEBUG util.py:250:   nss-softokn-freebl     x86_64 3.12.10-2.fc15            updates-released 129 k
+DEBUG util.py:250:   nss-sysinit            x86_64 3.12.10-6.fc15            updates-released  32 k
+DEBUG util.py:250:   nss-util               x86_64 3.12.10-1.fc15            updates-released  47 k
+DEBUG util.py:250:   openldap               x86_64 2.4.24-3.fc15             updates-released 259 k
+DEBUG util.py:250:   openssl                x86_64 1.0.0e-1.fc15             updates-released 1.3 M
+DEBUG util.py:250:   pam                    x86_64 1.1.4-4.fc15              updates-released 652 k
+DEBUG util.py:250:   pcre                   x86_64 8.12-3.fc15               updates-released 228 k
+DEBUG util.py:250:   perl                   x86_64 4:5.12.4-160.fc15         updates-released  11 M
+DEBUG util.py:250:   perl-Module-Pluggable  noarch 1:3.90-160.fc15           updates-released  40 k
+DEBUG util.py:250:   perl-PathTools         x86_64 3.33-1.fc15               fedora            90 k
+DEBUG util.py:250:   perl-Pod-Escapes       noarch 1:1.04-160.fc15           updates-released  33 k
+DEBUG util.py:250:   perl-Pod-Simple        noarch 1:3.13-160.fc15           updates-released 210 k
+DEBUG util.py:250:   perl-Scalar-List-Utils x86_64 1.23-1.fc15               fedora            35 k
+DEBUG util.py:250:   perl-libs              x86_64 4:5.12.4-160.fc15         updates-released 594 k
+DEBUG util.py:250:   perl-threads           x86_64 1.82-2.fc15               fedora            47 k
+DEBUG util.py:250:   perl-threads-shared    x86_64 1.36-2.fc15               fedora            36 k
+DEBUG util.py:250:   pinentry               x86_64 0.8.1-4.fc15              updates-released  69 k
+DEBUG util.py:250:   pkgconfig              x86_64 1:0.25-3.fc15             fedora            50 k
+DEBUG util.py:250:   popt                   x86_64 1.13-8.fc15               fedora            39 k
+DEBUG util.py:250:   ppl                    x86_64 0.11.2-1.fc15             fedora           1.5 M
+DEBUG util.py:250:   ppl-pwl                x86_64 0.11.2-1.fc15             fedora            35 k
+DEBUG util.py:250:   pth                    x86_64 2.0.7-10                  fedora            84 k
+DEBUG util.py:250:   python-libs            x86_64 2.7.1-7.fc15              fedora           5.5 M
+DEBUG util.py:250:   readline               x86_64 6.2-2.fc15                fedora           184 k
+DEBUG util.py:250:   rpm                    x86_64 4.9.1.2-1.fc15            updates-released 988 k
+DEBUG util.py:250:   rpm-build-libs         x86_64 4.9.1.2-1.fc15            updates-released  91 k
+DEBUG util.py:250:   rpm-libs               x86_64 4.9.1.2-1.fc15            updates-released 241 k
+DEBUG util.py:250:   setup                  noarch 2.8.31-2.fc15             fedora           152 k
+DEBUG util.py:250:   shared-mime-info       x86_64 0.90-8.fc15               updates-released 241 k
+DEBUG util.py:250:   sqlite                 x86_64 3.7.5-3.fc15              fedora           320 k
+DEBUG util.py:250:   tzdata                 noarch 2011k-0.1.20110921.fc15   updates-released 425 k
+DEBUG util.py:250:   xz-libs                x86_64 5.0.3-1.fc15              updates-released  92 k
+DEBUG util.py:250:   zlib                   x86_64 1.2.5-3.fc15              fedora            82 k
+DEBUG util.py:250:  Transaction Summary
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:  Install     124 Package(s)
+DEBUG util.py:250:  Total size: 97 M
+DEBUG util.py:250:  Installed size: 386 M
+DEBUG util.py:250:  warning: /etc/hosts created as /etc/hosts.rpmnew
+DEBUG util.py:250:  Installed:
+DEBUG util.py:250:    bash.x86_64 0:4.2.10-4.fc15           bzip2.x86_64 0:1.0.6-3.fc15            
+DEBUG util.py:250:    coreutils.x86_64 0:8.10-2.fc15        cpio.x86_64 0:2.11-3.fc15              
+DEBUG util.py:250:    diffutils.x86_64 0:2.8.1-30.fc15      fedora-release.noarch 0:15-3           
+DEBUG util.py:250:    findutils.x86_64 1:4.5.9-3.fc15       gawk.x86_64 0:3.1.8-3.fc15             
+DEBUG util.py:250:    gcc.x86_64 0:4.6.1-9.fc15             gcc-c++.x86_64 0:4.6.1-9.fc15          
+DEBUG util.py:250:    grep.x86_64 0:2.9-1.fc15              gzip.x86_64 0:1.4-3.fc15               
+DEBUG util.py:250:    info.x86_64 0:4.13a-15.fc15           make.x86_64 1:3.82-4.fc15              
+DEBUG util.py:250:    patch.x86_64 0:2.6.1-9.fc15           redhat-rpm-config.noarch 0:9.1.0-8.fc15
+DEBUG util.py:250:    rpm-build.x86_64 0:4.9.1.2-1.fc15     sed.x86_64 0:4.2.1-7.fc15              
+DEBUG util.py:250:    shadow-utils.x86_64 2:4.1.4.2-13.fc15 tar.x86_64 2:1.26-2.fc15               
+DEBUG util.py:250:    unzip.x86_64 0:6.0-4.fc15             util-linux.x86_64 0:2.19.1-1.4.fc15    
+DEBUG util.py:250:    which.x86_64 0:2.20-2.fc15            xz.x86_64 0:5.0.3-1.fc15               
+DEBUG util.py:250:  Dependency Installed:
+DEBUG util.py:250:    audit-libs.x86_64 0:2.1.3-1.fc15                                              
+DEBUG util.py:250:    basesystem.noarch 0:10.0-3                                                    
+DEBUG util.py:250:    binutils.x86_64 0:2.21.51.0.6-6.fc15                                          
+DEBUG util.py:250:    bzip2-libs.x86_64 0:1.0.6-3.fc15                                              
+DEBUG util.py:250:    ca-certificates.noarch 0:2011.78-1.fc15                                       
+DEBUG util.py:250:    chkconfig.x86_64 0:1.3.52-1.fc15                                              
+DEBUG util.py:250:    cloog-ppl.x86_64 0:0.15.9-3.fc15                                              
+DEBUG util.py:250:    coreutils-libs.x86_64 0:8.10-2.fc15                                           
+DEBUG util.py:250:    cpp.x86_64 0:4.6.1-9.fc15                                                     
+DEBUG util.py:250:    cracklib.x86_64 0:2.8.18-2.fc15                                               
+DEBUG util.py:250:    cracklib-dicts.x86_64 0:2.8.18-2.fc15                                         
+DEBUG util.py:250:    curl.x86_64 0:7.21.3-12.fc15                                                  
+DEBUG util.py:250:    cyrus-sasl-lib.x86_64 0:2.1.23-18.fc15                                        
+DEBUG util.py:250:    db4.x86_64 0:4.8.30-3.fc15                                                    
+DEBUG util.py:250:    db4-utils.x86_64 0:4.8.30-3.fc15                                              
+DEBUG util.py:250:    elfutils.x86_64 0:0.152-1.fc15                                                
+DEBUG util.py:250:    elfutils-libelf.x86_64 0:0.152-1.fc15                                         
+DEBUG util.py:250:    elfutils-libs.x86_64 0:0.152-1.fc15                                           
+DEBUG util.py:250:    expat.x86_64 0:2.0.1-11.fc15                                                  
+DEBUG util.py:250:    file.x86_64 0:5.07-4.fc15                                                     
+DEBUG util.py:250:    file-libs.x86_64 0:5.07-4.fc15                                                
+DEBUG util.py:250:    filesystem.x86_64 0:2.4.41-1.fc15                                             
+DEBUG util.py:250:    gamin.x86_64 0:0.1.10-9.fc15                                                  
+DEBUG util.py:250:    gdb.x86_64 0:7.3-43.fc15                                                      
+DEBUG util.py:250:    gdbm.x86_64 0:1.8.3-9.fc15                                                    
+DEBUG util.py:250:    glib2.x86_64 0:2.28.8-1.fc15                                                  
+DEBUG util.py:250:    glibc.x86_64 0:2.14-5                                                         
+DEBUG util.py:250:    glibc-common.x86_64 0:2.14-5                                                  
+DEBUG util.py:250:    glibc-devel.x86_64 0:2.14-5                                                   
+DEBUG util.py:250:    glibc-headers.x86_64 0:2.14-5                                                 
+DEBUG util.py:250:    gmp.x86_64 1:4.3.2-3.fc15                                                     
+DEBUG util.py:250:    gnupg2.x86_64 0:2.0.18-1.fc15                                                 
+DEBUG util.py:250:    kernel-headers.x86_64 0:2.6.40.6-0.fc15                                       
+DEBUG util.py:250:    keyutils-libs.x86_64 0:1.2-7.fc15                                             
+DEBUG util.py:250:    krb5-libs.x86_64 0:1.9.1-5.fc15                                               
+DEBUG util.py:250:    libacl.x86_64 0:2.2.49-11.fc15                                                
+DEBUG util.py:250:    libassuan.x86_64 0:2.0.0-4.fc15                                               
+DEBUG util.py:250:    libattr.x86_64 0:2.4.44-7.fc15                                                
+DEBUG util.py:250:    libblkid.x86_64 0:2.19.1-1.4.fc15                                             
+DEBUG util.py:250:    libcap.x86_64 0:2.22-1.fc15                                                   
+DEBUG util.py:250:    libcom_err.x86_64 0:1.41.14-2.fc15                                            
+DEBUG util.py:250:    libcurl.x86_64 0:7.21.3-12.fc15                                               
+DEBUG util.py:250:    libdb.x86_64 0:5.1.25-3.fc15                                                  
+DEBUG util.py:250:    libffi.x86_64 0:3.0.10-1.fc15                                                 
+DEBUG util.py:250:    libgcc.x86_64 0:4.6.1-9.fc15                                                  
+DEBUG util.py:250:    libgcrypt.x86_64 0:1.4.6-1.fc15                                               
+DEBUG util.py:250:    libgomp.x86_64 0:4.6.1-9.fc15                                                 
+DEBUG util.py:250:    libgpg-error.x86_64 0:1.9-2.fc15                                              
+DEBUG util.py:250:    libidn.x86_64 0:1.19-2.fc15                                                   
+DEBUG util.py:250:    libmount.x86_64 0:2.19.1-1.4.fc15                                             
+DEBUG util.py:250:    libmpc.x86_64 0:0.8.3-0.3.svn855.fc15                                         
+DEBUG util.py:250:    libselinux.x86_64 0:2.0.99-4.fc15                                             
+DEBUG util.py:250:    libsepol.x86_64 0:2.0.42-2.fc15                                               
+DEBUG util.py:250:    libssh2.x86_64 0:1.2.7-1.fc15                                                 
+DEBUG util.py:250:    libstdc++.x86_64 0:4.6.1-9.fc15                                               
+DEBUG util.py:250:    libstdc++-devel.x86_64 0:4.6.1-9.fc15                                         
+DEBUG util.py:250:    libutempter.x86_64 0:1.1.5-5.fc15                                             
+DEBUG util.py:250:    libuuid.x86_64 0:2.19.1-1.4.fc15                                              
+DEBUG util.py:250:    libxml2.x86_64 0:2.7.8-6.fc15                                                 
+DEBUG util.py:250:    lua.x86_64 0:5.1.4-8.fc15                                                     
+DEBUG util.py:250:    mpfr.x86_64 0:3.0.0-4.fc15                                                    
+DEBUG util.py:250:    ncurses.x86_64 0:5.8-2.20110319.fc15                                          
+DEBUG util.py:250:    ncurses-base.x86_64 0:5.8-2.20110319.fc15                                     
+DEBUG util.py:250:    ncurses-libs.x86_64 0:5.8-2.20110319.fc15                                     
+DEBUG util.py:250:    nspr.x86_64 0:4.8.8-1.fc15                                                    
+DEBUG util.py:250:    nss.x86_64 0:3.12.10-6.fc15                                                   
+DEBUG util.py:250:    nss-softokn.x86_64 0:3.12.10-2.fc15                                           
+DEBUG util.py:250:    nss-softokn-freebl.x86_64 0:3.12.10-2.fc15                                    
+DEBUG util.py:250:    nss-sysinit.x86_64 0:3.12.10-6.fc15                                           
+DEBUG util.py:250:    nss-util.x86_64 0:3.12.10-1.fc15                                              
+DEBUG util.py:250:    openldap.x86_64 0:2.4.24-3.fc15                                               
+DEBUG util.py:250:    openssl.x86_64 0:1.0.0e-1.fc15                                                
+DEBUG util.py:250:    pam.x86_64 0:1.1.4-4.fc15                                                     
+DEBUG util.py:250:    pcre.x86_64 0:8.12-3.fc15                                                     
+DEBUG util.py:250:    perl.x86_64 4:5.12.4-160.fc15                                                 
+DEBUG util.py:250:    perl-Module-Pluggable.noarch 1:3.90-160.fc15                                  
+DEBUG util.py:250:    perl-PathTools.x86_64 0:3.33-1.fc15                                           
+DEBUG util.py:250:    perl-Pod-Escapes.noarch 1:1.04-160.fc15                                       
+DEBUG util.py:250:    perl-Pod-Simple.noarch 1:3.13-160.fc15                                        
+DEBUG util.py:250:    perl-Scalar-List-Utils.x86_64 0:1.23-1.fc15                                   
+DEBUG util.py:250:    perl-libs.x86_64 4:5.12.4-160.fc15                                            
+DEBUG util.py:250:    perl-threads.x86_64 0:1.82-2.fc15                                             
+DEBUG util.py:250:    perl-threads-shared.x86_64 0:1.36-2.fc15                                      
+DEBUG util.py:250:    pinentry.x86_64 0:0.8.1-4.fc15                                                
+DEBUG util.py:250:    pkgconfig.x86_64 1:0.25-3.fc15                                                
+DEBUG util.py:250:    popt.x86_64 0:1.13-8.fc15                                                     
+DEBUG util.py:250:    ppl.x86_64 0:0.11.2-1.fc15                                                    
+DEBUG util.py:250:    ppl-pwl.x86_64 0:0.11.2-1.fc15                                                
+DEBUG util.py:250:    pth.x86_64 0:2.0.7-10                                                         
+DEBUG util.py:250:    python-libs.x86_64 0:2.7.1-7.fc15                                             
+DEBUG util.py:250:    readline.x86_64 0:6.2-2.fc15                                                  
+DEBUG util.py:250:    rpm.x86_64 0:4.9.1.2-1.fc15                                                   
+DEBUG util.py:250:    rpm-build-libs.x86_64 0:4.9.1.2-1.fc15                                        
+DEBUG util.py:250:    rpm-libs.x86_64 0:4.9.1.2-1.fc15                                              
+DEBUG util.py:250:    setup.noarch 0:2.8.31-2.fc15                                                  
+DEBUG util.py:250:    shared-mime-info.x86_64 0:0.90-8.fc15                                         
+DEBUG util.py:250:    sqlite.x86_64 0:3.7.5-3.fc15                                                  
+DEBUG util.py:250:    tzdata.noarch 0:2011k-0.1.20110921.fc15                                       
+DEBUG util.py:250:    xz-libs.x86_64 0:5.0.3-1.fc15                                                 
+DEBUG util.py:250:    zlib.x86_64 0:1.2.5-3.fc15                                                    
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:83:  remove tree: /extra/redhat/mock/fedora-15-x86_64/root/builddir
+DEBUG util.py:284:  Executing command: ['/usr/sbin/userdel', '-r', '-f', 'mockbuild']
+DEBUG util.py:250:  userdel: user 'mockbuild' does not exist
+DEBUG util.py:323:  Child returncode was: 6
+DEBUG util.py:284:  Executing command: ['/usr/sbin/groupdel', 'mockbuild']
+DEBUG util.py:250:  groupdel: group 'mockbuild' does not exist
+DEBUG util.py:323:  Child returncode was: 6
+DEBUG util.py:284:  Executing command: ['/usr/sbin/groupadd', '-g', '473', 'mockbuild']
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: /usr/sbin/useradd -o -m -u 500 -g 473 -d /builddir -n mockbuild
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/RPMS
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/RPMS
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/SRPMS
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/SRPMS
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/SOURCES
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/SOURCES
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/SPECS
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/SPECS
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/BUILD
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/BUILD
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/BUILDROOT
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/BUILDROOT
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/originals
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/builddir/build/originals
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:83:  remove tree: /extra/redhat/mock/fedora-15-x86_64/root/dev
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:57:  ensuring that dir exists: /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:60:  creating dir: /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG backend.py:417:  kver == 2.6.40.4-5.fc15.x86_64
+DEBUG backend.py:719:  mount -n -t proc   mock_chroot_proc   /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:284:  Executing command: mount -n -t proc   mock_chroot_proc   /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n -t sysfs  mock_chroot_sysfs  /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG util.py:284:  Executing command: mount -n -t sysfs  mock_chroot_sysfs  /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/yum_cache/  /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/yum_cache/  /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /home/bcl/Red_Hat/projs/anaconda  /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:284:  Executing command: mount -n --bind /home/bcl/Red_Hat/projs/anaconda  /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /home/bcl/Red_Hat/projs/parted  /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:284:  Executing command: mount -n --bind /home/bcl/Red_Hat/projs/parted  /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/repo  /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/repo  /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/pungi  /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/pungi  /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /home/bcl/Red_Hat/scripts  /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:284:  Executing command: mount -n --bind /home/bcl/Red_Hat/scripts  /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/ccache/  /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:284:  Executing command: mount -n --bind /extra/redhat/mock/cache//fedora-15-x86_64/ccache/  /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:284:  Executing command: mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:719:  mount -n -t tmpfs mock_chroot_shmfs /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:284:  Executing command: mount -n -t tmpfs mock_chroot_shmfs /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: ['rpm', '-Uvh', '--nodeps', '/builddir/build/originals/parted-2.3-11.fc15.src.rpm']
+DEBUG util.py:250:  parted                      warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  #warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  #warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  ##############################################warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  #warning: user bcl does not exist - using root
+DEBUG util.py:250:  warning: group bcl does not exist - using root
+DEBUG util.py:250:  #
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:769:  ['/usr/bin/yum', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', 'resolvedep', 'ccache']
+DEBUG util.py:284:  Executing command: ['/usr/bin/yum', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', 'resolvedep', 'ccache']
+DEBUG util.py:250:  Ignored option -c (probably due to merging -yc != -y -c)
+DEBUG util.py:250:  0:ccache-3.1.4-4.fc15.x86_64
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:769:  ['/usr/bin/yum', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', 'install', 'ccache']
+DEBUG util.py:284:  Executing command: ['/usr/bin/yum', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', 'install', 'ccache']
+DEBUG util.py:250:  Ignored option -c (probably due to merging -yc != -y -c)
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:   Package         Arch            Version                  Repository       Size
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:  Installing:
+DEBUG util.py:250:   ccache          x86_64          3.1.4-4.fc15             fedora          120 k
+DEBUG util.py:250:  Transaction Summary
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:  Install       1 Package(s)
+DEBUG util.py:250:  Total size: 120 k
+DEBUG util.py:250:  Installed size: 343 k
+DEBUG util.py:250:  Installed:
+DEBUG util.py:250:    ccache.x86_64 0:3.1.4-4.fc15                                                  
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG backend.py:769:  ['/usr/bin/yum-builddep', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', '/extra/redhat/mock/fedora-15-x86_64/root///builddir/build/SRPMS/parted-2.3-11.fc15.src.rpm']
+DEBUG util.py:284:  Executing command: ['/usr/bin/yum-builddep', '--installroot', '/extra/redhat/mock/fedora-15-x86_64/root/', '/extra/redhat/mock/fedora-15-x86_64/root///builddir/build/SRPMS/parted-2.3-11.fc15.src.rpm']
+DEBUG util.py:250:  Getting requirements for parted-2.3-11.fc15.src
+DEBUG util.py:250:   --> e2fsprogs-devel-1.41.14-2.fc15.x86_64
+DEBUG util.py:250:   --> readline-devel-6.2-2.fc15.x86_64
+DEBUG util.py:250:   --> ncurses-devel-5.8-2.20110319.fc15.x86_64
+DEBUG util.py:250:   --> gettext-devel-0.18.1.1-8.fc15.x86_64
+DEBUG util.py:250:   --> texinfo-4.13a-15.fc15.x86_64
+DEBUG util.py:250:   --> device-mapper-devel-1.02.63-4.fc15.x86_64
+DEBUG util.py:250:   --> libselinux-devel-2.0.99-4.fc15.x86_64
+DEBUG util.py:250:   --> libuuid-devel-2.19.1-1.4.fc15.x86_64
+DEBUG util.py:250:   --> libblkid-devel-2.19.1-1.4.fc15.x86_64
+DEBUG util.py:250:   --> gnupg-1.4.11-3.fc15.x86_64
+DEBUG util.py:250:   --> git-1.7.6.4-1.fc15.x86_64
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:   Package              Arch   Version                     Repository        Size
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:  Installing:
+DEBUG util.py:250:   device-mapper-devel  x86_64 1.02.63-4.fc15              updates-released  94 k
+DEBUG util.py:250:   e2fsprogs-devel      x86_64 1.41.14-2.fc15              fedora            61 k
+DEBUG util.py:250:   gettext-devel        x86_64 0.18.1.1-8.fc15             updates-released 149 k
+DEBUG util.py:250:   git                  x86_64 1.7.6.4-1.fc15              updates-released 2.9 M
+DEBUG util.py:250:   gnupg                x86_64 1.4.11-3.fc15               fedora           1.2 M
+DEBUG util.py:250:   libblkid-devel       x86_64 2.19.1-1.4.fc15             updates-released  70 k
+DEBUG util.py:250:   libselinux-devel     x86_64 2.0.99-4.fc15               fedora           140 k
+DEBUG util.py:250:   libuuid-devel        x86_64 2.19.1-1.4.fc15             updates-released  73 k
+DEBUG util.py:250:   ncurses-devel        x86_64 5.8-2.20110319.fc15         fedora           694 k
+DEBUG util.py:250:   readline-devel       x86_64 6.2-2.fc15                  fedora           137 k
+DEBUG util.py:250:   texinfo              x86_64 4.13a-15.fc15               fedora           664 k
+DEBUG util.py:250:  Installing for dependencies:
+DEBUG util.py:250:   authconfig           x86_64 6.1.15-1.fc15               updates-released 347 k
+DEBUG util.py:250:   cryptsetup-luks-libs x86_64 1.3.1-2.fc15                updates-released  54 k
+DEBUG util.py:250:   dash                 x86_64 0.5.6-5.fc15                updates-released  85 k
+DEBUG util.py:250:   dbus                 x86_64 1:1.4.6-5.fc15              updates-released 215 k
+DEBUG util.py:250:   dbus-libs            x86_64 1:1.4.6-5.fc15              updates-released 134 k
+DEBUG util.py:250:   device-mapper        x86_64 1.02.63-4.fc15              updates-released 136 k
+DEBUG util.py:250:   device-mapper-libs   x86_64 1.02.63-4.fc15              updates-released 144 k
+DEBUG util.py:250:   dracut               noarch 009-12.fc15                 updates-released 146 k
+DEBUG util.py:250:   e2fsprogs-libs       x86_64 1.41.14-2.fc15              fedora           116 k
+DEBUG util.py:250:   fedora-logos         noarch 15.0.1-1.fc15               updates-released 1.5 M
+DEBUG util.py:250:   fipscheck            x86_64 1.3.0-2.fc15                fedora            14 k
+DEBUG util.py:250:   fipscheck-lib        x86_64 1.3.0-2.fc15                fedora           7.9 k
+DEBUG util.py:250:   gettext              x86_64 0.18.1.1-8.fc15             updates-released 1.0 M
+DEBUG util.py:250:   gettext-common-devel noarch 0.18.1.1-8.fc15             updates-released 603 k
+DEBUG util.py:250:   gettext-libs         x86_64 0.18.1.1-8.fc15             updates-released 233 k
+DEBUG util.py:250:   grubby               x86_64 7.0.16-5.fc15               updates-released  43 k
+DEBUG util.py:250:   hostname             x86_64 3.05-2.fc15                 fedora            20 k
+DEBUG util.py:250:   hwdata               noarch 0.234-1.fc15                updates-released 991 k
+DEBUG util.py:250:   initscripts          x86_64 9.30-2.fc15                 fedora           923 k
+DEBUG util.py:250:   iproute              x86_64 2.6.38.1-4.fc15             fedora           359 k
+DEBUG util.py:250:   iptables             x86_64 1.4.10-2.fc15               fedora           257 k
+DEBUG util.py:250:   iputils              x86_64 20101006-7.fc15             fedora           128 k
+DEBUG util.py:250:   kbd                  x86_64 1.15.2-2.fc15               fedora           276 k
+DEBUG util.py:250:   kbd-misc             noarch 1.15.2-2.fc15               fedora           889 k
+DEBUG util.py:250:   kernel               x86_64 2.6.40.6-0.fc15             updates-released  23 M
+DEBUG util.py:250:   less                 x86_64 436-13.fc15                 fedora           108 k
+DEBUG util.py:250:   libcap-ng            x86_64 0.6.6-1.fc15                updates-released  22 k
+DEBUG util.py:250:   libcom_err-devel     x86_64 1.41.14-2.fc15              fedora            26 k
+DEBUG util.py:250:   libcroco             x86_64 0.6.2-6.fc15                fedora            99 k
+DEBUG util.py:250:   libdrm               x86_64 2.4.26-1.fc15               updates-released  69 k
+DEBUG util.py:250:   libedit              x86_64 3.0-4.20110227cvs.fc15      updates-released  85 k
+DEBUG util.py:250:   libpciaccess         x86_64 0.12.1-1.fc15               fedora            22 k
+DEBUG util.py:250:   libsepol-devel       x86_64 2.0.42-2.fc15               fedora            64 k
+DEBUG util.py:250:   libudev              x86_64 167-6.fc15                  updates-released  75 k
+DEBUG util.py:250:   libunistring         x86_64 0.9.3-2.fc15                fedora           287 k
+DEBUG util.py:250:   libusb               x86_64 1:0.1.3-9.fc15              updates-released  17 k
+DEBUG util.py:250:   libusb1              x86_64 1.0.8-7.fc15                fedora            59 k
+DEBUG util.py:250:   linux-atm-libs       x86_64 2.5.1-3.fc15                fedora            24 k
+DEBUG util.py:250:   linux-firmware       noarch 20110601-1.fc15             updates-released 8.2 M
+DEBUG util.py:250:   mingetty             x86_64 1.08-7.fc15                 fedora            21 k
+DEBUG util.py:250:   module-init-tools    x86_64 3.16-2.fc15                 updates-released 423 k
+DEBUG util.py:250:   net-tools            x86_64 1.60-117.fc15               updates-released 252 k
+DEBUG util.py:250:   newt                 x86_64 0.52.12-3.fc15              fedora            97 k
+DEBUG util.py:250:   newt-python          x86_64 0.52.12-3.fc15              fedora            49 k
+DEBUG util.py:250:   openssh              x86_64 5.6p1-34.fc15.1             updates-released 273 k
+DEBUG util.py:250:   openssh-clients      x86_64 5.6p1-34.fc15.1             updates-released 381 k
+DEBUG util.py:250:   perl-Error           noarch 1:0.17016-5.fc15            fedora            30 k
+DEBUG util.py:250:   perl-Git             noarch 1.7.6.4-1.fc15              updates-released  40 k
+DEBUG util.py:250:   plymouth             x86_64 0.8.4-0.20110510.2.fc15     fedora            89 k
+DEBUG util.py:250:   plymouth-core-libs   x86_64 0.8.4-0.20110510.2.fc15     fedora            86 k
+DEBUG util.py:250:   plymouth-scripts     x86_64 0.8.4-0.20110510.2.fc15     fedora            27 k
+DEBUG util.py:250:   procps               x86_64 3.2.8-21.20110302git.fc15   updates-released 200 k
+DEBUG util.py:250:   psmisc               x86_64 22.13-8.fc15                fedora           118 k
+DEBUG util.py:250:   python               x86_64 2.7.1-7.fc15                fedora            73 k
+DEBUG util.py:250:   rsync                x86_64 3.0.8-1.fc15                fedora           339 k
+DEBUG util.py:250:   slang                x86_64 2.2.3-2.fc15                fedora           488 k
+DEBUG util.py:250:   systemd              x86_64 26-10.fc15                  updates-released 560 k
+DEBUG util.py:250:   systemd-units        x86_64 26-10.fc15                  updates-released 132 k
+DEBUG util.py:250:   sysvinit-tools       x86_64 2.88-3.dsf.fc15             fedora            68 k
+DEBUG util.py:250:   tcp_wrappers-libs    x86_64 7.6-60.fc15                 fedora            62 k
+DEBUG util.py:250:   udev                 x86_64 167-6.fc15                  updates-released 348 k
+DEBUG util.py:250:  Transaction Summary
+DEBUG util.py:250:  ================================================================================
+DEBUG util.py:250:  Install      72 Package(s)
+DEBUG util.py:250:  Total size: 51 M
+DEBUG util.py:250:  Installed size: 193 M
+DEBUG util.py:250:  /bin/grep: /etc/pam.d/system-auth-ac: No such file or directory
+DEBUG util.py:250:  1185 blocks
+DEBUG util.py:250:  Installed:
+DEBUG util.py:250:    device-mapper-devel.x86_64 0:1.02.63-4.fc15                                   
+DEBUG util.py:250:    e2fsprogs-devel.x86_64 0:1.41.14-2.fc15                                       
+DEBUG util.py:250:    gettext-devel.x86_64 0:0.18.1.1-8.fc15                                        
+DEBUG util.py:250:    git.x86_64 0:1.7.6.4-1.fc15                                                   
+DEBUG util.py:250:    gnupg.x86_64 0:1.4.11-3.fc15                                                  
+DEBUG util.py:250:    libblkid-devel.x86_64 0:2.19.1-1.4.fc15                                       
+DEBUG util.py:250:    libselinux-devel.x86_64 0:2.0.99-4.fc15                                       
+DEBUG util.py:250:    libuuid-devel.x86_64 0:2.19.1-1.4.fc15                                        
+DEBUG util.py:250:    ncurses-devel.x86_64 0:5.8-2.20110319.fc15                                    
+DEBUG util.py:250:    readline-devel.x86_64 0:6.2-2.fc15                                            
+DEBUG util.py:250:    texinfo.x86_64 0:4.13a-15.fc15                                                
+DEBUG util.py:250:  Dependency Installed:
+DEBUG util.py:250:    authconfig.x86_64 0:6.1.15-1.fc15                                             
+DEBUG util.py:250:    cryptsetup-luks-libs.x86_64 0:1.3.1-2.fc15                                    
+DEBUG util.py:250:    dash.x86_64 0:0.5.6-5.fc15                                                    
+DEBUG util.py:250:    dbus.x86_64 1:1.4.6-5.fc15                                                    
+DEBUG util.py:250:    dbus-libs.x86_64 1:1.4.6-5.fc15                                               
+DEBUG util.py:250:    device-mapper.x86_64 0:1.02.63-4.fc15                                         
+DEBUG util.py:250:    device-mapper-libs.x86_64 0:1.02.63-4.fc15                                    
+DEBUG util.py:250:    dracut.noarch 0:009-12.fc15                                                   
+DEBUG util.py:250:    e2fsprogs-libs.x86_64 0:1.41.14-2.fc15                                        
+DEBUG util.py:250:    fedora-logos.noarch 0:15.0.1-1.fc15                                           
+DEBUG util.py:250:    fipscheck.x86_64 0:1.3.0-2.fc15                                               
+DEBUG util.py:250:    fipscheck-lib.x86_64 0:1.3.0-2.fc15                                           
+DEBUG util.py:250:    gettext.x86_64 0:0.18.1.1-8.fc15                                              
+DEBUG util.py:250:    gettext-common-devel.noarch 0:0.18.1.1-8.fc15                                 
+DEBUG util.py:250:    gettext-libs.x86_64 0:0.18.1.1-8.fc15                                         
+DEBUG util.py:250:    grubby.x86_64 0:7.0.16-5.fc15                                                 
+DEBUG util.py:250:    hostname.x86_64 0:3.05-2.fc15                                                 
+DEBUG util.py:250:    hwdata.noarch 0:0.234-1.fc15                                                  
+DEBUG util.py:250:    initscripts.x86_64 0:9.30-2.fc15                                              
+DEBUG util.py:250:    iproute.x86_64 0:2.6.38.1-4.fc15                                              
+DEBUG util.py:250:    iptables.x86_64 0:1.4.10-2.fc15                                               
+DEBUG util.py:250:    iputils.x86_64 0:20101006-7.fc15                                              
+DEBUG util.py:250:    kbd.x86_64 0:1.15.2-2.fc15                                                    
+DEBUG util.py:250:    kbd-misc.noarch 0:1.15.2-2.fc15                                               
+DEBUG util.py:250:    kernel.x86_64 0:2.6.40.6-0.fc15                                               
+DEBUG util.py:250:    less.x86_64 0:436-13.fc15                                                     
+DEBUG util.py:250:    libcap-ng.x86_64 0:0.6.6-1.fc15                                               
+DEBUG util.py:250:    libcom_err-devel.x86_64 0:1.41.14-2.fc15                                      
+DEBUG util.py:250:    libcroco.x86_64 0:0.6.2-6.fc15                                                
+DEBUG util.py:250:    libdrm.x86_64 0:2.4.26-1.fc15                                                 
+DEBUG util.py:250:    libedit.x86_64 0:3.0-4.20110227cvs.fc15                                       
+DEBUG util.py:250:    libpciaccess.x86_64 0:0.12.1-1.fc15                                           
+DEBUG util.py:250:    libsepol-devel.x86_64 0:2.0.42-2.fc15                                         
+DEBUG util.py:250:    libudev.x86_64 0:167-6.fc15                                                   
+DEBUG util.py:250:    libunistring.x86_64 0:0.9.3-2.fc15                                            
+DEBUG util.py:250:    libusb.x86_64 1:0.1.3-9.fc15                                                  
+DEBUG util.py:250:    libusb1.x86_64 0:1.0.8-7.fc15                                                 
+DEBUG util.py:250:    linux-atm-libs.x86_64 0:2.5.1-3.fc15                                          
+DEBUG util.py:250:    linux-firmware.noarch 0:20110601-1.fc15                                       
+DEBUG util.py:250:    mingetty.x86_64 0:1.08-7.fc15                                                 
+DEBUG util.py:250:    module-init-tools.x86_64 0:3.16-2.fc15                                        
+DEBUG util.py:250:    net-tools.x86_64 0:1.60-117.fc15                                              
+DEBUG util.py:250:    newt.x86_64 0:0.52.12-3.fc15                                                  
+DEBUG util.py:250:    newt-python.x86_64 0:0.52.12-3.fc15                                           
+DEBUG util.py:250:    openssh.x86_64 0:5.6p1-34.fc15.1                                              
+DEBUG util.py:250:    openssh-clients.x86_64 0:5.6p1-34.fc15.1                                      
+DEBUG util.py:250:    perl-Error.noarch 1:0.17016-5.fc15                                            
+DEBUG util.py:250:    perl-Git.noarch 0:1.7.6.4-1.fc15                                              
+DEBUG util.py:250:    plymouth.x86_64 0:0.8.4-0.20110510.2.fc15                                     
+DEBUG util.py:250:    plymouth-core-libs.x86_64 0:0.8.4-0.20110510.2.fc15                           
+DEBUG util.py:250:    plymouth-scripts.x86_64 0:0.8.4-0.20110510.2.fc15                             
+DEBUG util.py:250:    procps.x86_64 0:3.2.8-21.20110302git.fc15                                     
+DEBUG util.py:250:    psmisc.x86_64 0:22.13-8.fc15                                                  
+DEBUG util.py:250:    python.x86_64 0:2.7.1-7.fc15                                                  
+DEBUG util.py:250:    rsync.x86_64 0:3.0.8-1.fc15                                                   
+DEBUG util.py:250:    slang.x86_64 0:2.2.3-2.fc15                                                   
+DEBUG util.py:250:    systemd.x86_64 0:26-10.fc15                                                   
+DEBUG util.py:250:    systemd-units.x86_64 0:26-10.fc15                                             
+DEBUG util.py:250:    sysvinit-tools.x86_64 0:2.88-3.dsf.fc15                                       
+DEBUG util.py:250:    tcp_wrappers-libs.x86_64 0:7.6-60.fc15                                        
+DEBUG util.py:250:    udev.x86_64 0:167-6.fc15                                                      
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: ['ccache', '-M', '4G']
+DEBUG util.py:250:  Set cache size limit to 4.0 Gbytes
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/dev/shm
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/dev/pts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/tmp/ccache
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/root/scripts
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/pungi
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/repo
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/root/parted
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/root/anaconda
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/var/cache/yum
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/sys
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:284:  Executing command: umount -n /extra/redhat/mock/fedora-15-x86_64/root/proc
+DEBUG util.py:323:  Child returncode was: 0
+DEBUG util.py:111:  kill orphans
+DEBUG util.py:83:  remove tree: /extra/redhat/mock/fedora-15-x86_64.tmp
+INFO backend.py:172:  chroot (/extra/redhat/mock/fedora-15-x86_64) unlocked and deleted
+DEBUG util.py:111:  kill orphans
diff --git a/parted/2.3/11.fc15/state.log b/parted/2.3/11.fc15/state.log
new file mode 100644
index 0000000..27821f3
--- /dev/null
+++ b/parted/2.3/11.fc15/state.log
@@ -0,0 +1,9 @@
+2011-10-13 17:01:36,521 - Mock Version: 1.1.15
+2011-10-13 17:01:36,522 - State Changed: cleaning yum metadata
+2011-10-13 17:01:36,534 - State Changed: running yum
+2011-10-13 17:02:34,400 - State Changed: unlock buildroot
+2011-10-13 17:02:34,457 - State Changed: setup
+2011-10-13 17:04:09,535 - State Changed: build
+2011-10-13 17:04:56,290 - State Changed: lock buildroot
+2011-10-13 17:04:56,290 - State Changed: clean
+2011-10-13 17:04:56,971 - State Changed: unlock buildroot


More information about the scm-commits mailing list