Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2013-07-29 09:27:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-storage (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-storage.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-storage"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes      
2013-07-16 16:32:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2013-07-29 09:27:28.000000000 +0200
@@ -1,0 +2,5 @@
+Tue Jul 23 17:32:05 CEST 2013 - f...@suse.de
+
+- avoid usage of overloaded function LibStorage::initDefaultLogger
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-storage-2.24.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/Makefile.am 
new/yast2-storage-2.24.6/Makefile.am
--- old/yast2-storage-2.24.6/Makefile.am        2013-07-11 17:39:59.000000000 
+0200
+++ new/yast2-storage-2.24.6/Makefile.am        2013-07-24 11:58:19.000000000 
+0200
@@ -158,19 +158,14 @@
 
 TAGVERSION      = $(Y2TOOL) tagversion
 
-check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
-       if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\
-       else \
-         cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep 
-v '^Status against revision' ;\
+# check if there is no modified files and all commits were pushed
+check-up-to-date:
+       if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` 
-gt 0 ]; then \
+         (echo "ERROR: Source is not commited and pushed. See `git status`"; 
false) \
        fi
 
 check-tagversion:
-       @if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
-       else \
-         cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \
-       fi >/dev/null; \
+       cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \
        [ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false )
 
 check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/Makefile.am.common 
new/yast2-storage-2.24.6/Makefile.am.common
--- old/yast2-storage-2.24.6/Makefile.am.common 2013-07-11 17:39:59.000000000 
+0200
+++ new/yast2-storage-2.24.6/Makefile.am.common 2013-07-24 11:58:18.000000000 
+0200
@@ -31,7 +31,7 @@
 
 CHECK_SYNTAX = true
 check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
-       @if test "$(client_DATA)"; then \
+       @if test "$(filter %.ycp,client_DATA)"; then \
          if $(CHECK_SYNTAX); then \
            TO_CHECK="$(filter %.ycp,$^)"; \
            echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/Makefile.in 
new/yast2-storage-2.24.6/Makefile.in
--- old/yast2-storage-2.24.6/Makefile.in        2013-07-11 17:40:12.000000000 
+0200
+++ new/yast2-storage-2.24.6/Makefile.in        2013-07-24 11:58:30.000000000 
+0200
@@ -69,7 +69,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
@@ -1069,19 +1069,14 @@
 
 package: check-up-to-date check-tagversion check-textdomain package-local
 
-check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
-       if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\
-       else \
-         cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep 
-v '^Status against revision' ;\
+# check if there is no modified files and all commits were pushed
+check-up-to-date:
+       if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` 
-gt 0 ]; then \
+         (echo "ERROR: Source is not commited and pushed. See `git status`"; 
false) \
        fi
 
 check-tagversion:
-       @if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
-       else \
-         cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \
-       fi >/dev/null; \
+       cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \
        [ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false )
 
 check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/agents-scr/Makefile.in 
new/yast2-storage-2.24.6/agents-scr/Makefile.in
--- old/yast2-storage-2.24.6/agents-scr/Makefile.in     2013-07-11 
17:40:12.000000000 +0200
+++ new/yast2-storage-2.24.6/agents-scr/Makefile.in     2013-07-24 
11:58:30.000000000 +0200
@@ -61,7 +61,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/bindings/Makefile.in 
new/yast2-storage-2.24.6/bindings/Makefile.in
--- old/yast2-storage-2.24.6/bindings/Makefile.in       2013-07-11 
17:40:12.000000000 +0200
+++ new/yast2-storage-2.24.6/bindings/Makefile.in       2013-07-24 
11:58:30.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/bindings/src/Makefile.in 
new/yast2-storage-2.24.6/bindings/src/Makefile.in
--- old/yast2-storage-2.24.6/bindings/src/Makefile.in   2013-07-11 
17:40:12.000000000 +0200
+++ new/yast2-storage-2.24.6/bindings/src/Makefile.in   2013-07-24 
11:58:30.000000000 +0200
@@ -62,7 +62,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/bindings/ycp/Makefile.in 
new/yast2-storage-2.24.6/bindings/ycp/Makefile.in
--- old/yast2-storage-2.24.6/bindings/ycp/Makefile.in   2013-07-11 
17:40:12.000000000 +0200
+++ new/yast2-storage-2.24.6/bindings/ycp/Makefile.in   2013-07-24 
11:58:30.000000000 +0200
@@ -80,7 +80,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/bindings/ycp/example.ycp 
new/yast2-storage-2.24.6/bindings/ycp/example.ycp
--- old/yast2-storage-2.24.6/bindings/ycp/example.ycp   2013-01-22 
12:12:36.000000000 +0100
+++ new/yast2-storage-2.24.6/bindings/ycp/example.ycp   2013-07-23 
17:48:29.000000000 +0200
@@ -61,10 +61,10 @@
     {
        y2milestone ("test2");
 
-       string tmp = "hda1";
+       string tmp = "sda1";
        string mount_point = "";
        LibStorage::StorageInterface::getMountPoint (o, tmp, mount_point);
-       y2milestone ("mount point of /dev/hda2 is %1", mount_point);
+       y2milestone ("mount point of /dev/sda1 is %1", mount_point);
     }
 
 
@@ -82,7 +82,7 @@
     {
        y2milestone ("test4");
 
-       string tmp = "hda";
+       string tmp = "sda";
        integer i1 = LibStorage::StorageInterface::cylinderToKb (o, tmp, 10);
        y2milestone ("i1 = %1", i1);
 
@@ -95,7 +95,7 @@
     {
        y2milestone ("test5");
 
-       string tmp = "hda1";
+       string tmp = "sda1";
        boolean b1 = true;
        LibStorage::StorageInterface::getCrypt (o, tmp, b1);
        y2milestone ("b1 = %1", b1);
@@ -116,7 +116,7 @@
     {
        y2milestone ("test7");
 
-       string tmp = "hda1";
+       string tmp = "sda1";
        integer mb1 = LibStorage::MOUNTBY_LABEL ();
        LibStorage::StorageInterface::getMountBy (o, tmp, mb1);
        y2milestone ("mb1 = %1", mb1);
@@ -146,8 +146,8 @@
        y2milestone ("mb1 = %1", mb1);
     }
 
-
-    LibStorage::initDefaultLogger();
+    string logdir = "/var/log/YaST2";
+    LibStorage::initDefaultLogger(logdir);
 
     any env = LibStorage::Environment::new("LibStorage::Environment", true);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/config.h.in 
new/yast2-storage-2.24.6/config.h.in
--- old/yast2-storage-2.24.6/config.h.in        2013-07-11 17:40:11.000000000 
+0200
+++ new/yast2-storage-2.24.6/config.h.in        2013-07-24 11:58:29.000000000 
+0200
@@ -1,4 +1,4 @@
-/* config.h.in.  Generated from configure.in by autoheader.  */
+/* config.h.in.  Generated from configure.ac by autoheader.  */
 
 /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
    systems. This function is required for `alloca.c' support on those systems.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/configure.ac 
new/yast2-storage-2.24.6/configure.ac
--- old/yast2-storage-2.24.6/configure.ac       1970-01-01 01:00:00.000000000 
+0100
+++ new/yast2-storage-2.24.6/configure.ac       2013-07-24 11:58:18.000000000 
+0200
@@ -0,0 +1,234 @@
+dnl configure.ac for yast2-storage
+dnl
+dnl -- This file is generated by y2autoconf 2.24.5 - DO NOT EDIT! --
+dnl    (edit configure.ac.in or configure.in.in instead)
+
+AC_INIT(yast2-storage, 2.24.6, http://bugs.opensuse.org/, yast2-storage)
+dnl Check for presence of file 'RPMNAME'
+AC_CONFIG_SRCDIR([RPMNAME])
+
+dnl Checking host/target/build systems, for make, install etc.
+AC_CANONICAL_TARGET
+dnl Perform program name transformation
+AC_ARG_PROGRAM
+
+AC_PREFIX_DEFAULT(/usr)
+
+dnl long filenames; we use GNU Make extensions and that's ok
+AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
+
+dnl Important YaST2 variables
+VERSION="2.24.6"
+RPMNAME="yast2-storage"
+MAINTAINER="Arvin Schnell <aschn...@suse.de>"
+
+dnl pkgconfig honors lib64
+pkgconfigdir=\${libdir}/pkgconfig
+pkgconfigdatadir=\${datadir}/pkgconfig
+yast2dir=\${prefix}/share/YaST2
+
+ybindir=\${prefix}/lib/YaST2/bin
+# FIXME duplicates execcompdir
+ystartupdir=\${prefix}/lib/YaST2
+plugindir=\${libdir}/YaST2/plugin
+includedir=\${prefix}/include/YaST2
+potdir=\${docdir}/pot
+
+docdir=\${prefix}/share/doc/packages/$RPMNAME
+mandir=\${prefix}/share/man
+
+execcompdir=\${prefix}/lib/YaST2
+agentdir=${execcompdir}/servers_non_y2
+
+ydatadir=${yast2dir}/data
+imagedir=${yast2dir}/images
+themedir=${yast2dir}/theme
+localedir=${yast2dir}/locale
+clientdir=${yast2dir}/clients
+moduledir=${yast2dir}/modules
+yncludedir=${yast2dir}/include
+schemadir=${yast2dir}/schema
+scrconfdir=${yast2dir}/scrconf
+desktopdir=\${prefix}/share/applications/YaST2
+
+AC_SUBST(VERSION)
+AC_SUBST(RPMNAME)
+AC_SUBST(MAINTAINER)
+
+AC_SUBST(pkgconfigdir)
+AC_SUBST(pkgconfigdatadir)
+
+AC_SUBST(yast2dir)
+
+AC_SUBST(ybindir)
+AC_SUBST(ystartupdir)
+AC_SUBST(plugindir)
+AC_SUBST(includedir)
+AC_SUBST(potdir)
+AC_SUBST(execcompdir)
+
+AC_SUBST(docdir)
+AC_SUBST(mandir)
+
+AC_SUBST(ydatadir)
+AC_SUBST(imagedir)
+AC_SUBST(themedir)
+AC_SUBST(localedir)
+AC_SUBST(clientdir)
+AC_SUBST(moduledir)
+AC_SUBST(yncludedir)
+AC_SUBST(schemadir)
+AC_SUBST(scrconfdir)
+AC_SUBST(agentdir)
+AC_SUBST(desktopdir)
+
+fillupdir_d="/var/adm/fillup-templates"
+AC_ARG_WITH(fillupdir,
+    AS_HELP_STRING([--with-fillupdir=DIR],
+                  [where to place fillup templates (default $fillupdir_d.]),
+    [ fillupdir="$withval" ],
+    [ fillupdir="$fillupdir_d" ])
+AC_SUBST(fillupdir)
+
+
+dnl Automake 1.11 enables silent compilation,
+dnl Disable it by "configure --disable-silent-rules" or "make V=1"
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
+AC_CHECK_PROGS([SWIG], [swig])
+if test -z "$SWIG"; then
+       AC_MSG_ERROR([install swig])
+fi
+AC_CHECK_PROGS([SABCMD], [sabcmd])
+if test -z "$SABCMD"; then
+       AC_MSG_ERROR([install sablotron])
+fi
+
+dnl Checks for programs.
+AC_PROG_INSTALL
+dnl The YCP interpreter checks whether dependent ybc files are older
+dnl so we must preserve their timestamps
+INSTALL="${INSTALL} -p"
+AC_PROG_LN_S
+AC_PROG_MAKE_SET
+
+dnl pkgconfig
+AC_ARG_VAR([PKG_CONFIG_PATH], [where to search for pkg-config files])
+dnl devtools
+dnl ...
+
+dnl no need for AC_ARG_VAR
+AC_PATH_PROG(XGETTEXT, xgettext)
+if test -z "$XGETTEXT" ; then
+    AC_MSG_ERROR(xgettext is missing; please install gettext-tools.)
+fi
+
+Y2DEVTOOLS_PREFIX=`pkg-config --print-errors --variable=prefix yast2-devtools`
+AC_SUBST(Y2DEVTOOLS_PREFIX)
+devtools_ybindir=`pkg-config --print-errors --variable=ybindir yast2-devtools`
+devtools_yast2dir=`pkg-config --print-errors --variable=yast2dir 
yast2-devtools`
+
+dnl producing pkg-config for others?
+AM_CONDITIONAL(CREATE_PKGCONFIG, test "x${CREATE_PKGCONFIG}" != x)
+AM_CONDITIONAL(CREATE_PKGCONFIG_NOARCH, test "x${CREATE_PKGCONFIG}" = xnoarch)
+
+dbdir=${devtools_yast2dir}/data/docbook
+STYLESHEET_HTML=${dbdir}/stylesheets/customize-html.xsl
+STYLESHEET_PDF=${dbdir}/stylesheets/customize-fo.xsl
+STYLESHEET_CSS=${dbdir}/css/yast2docs.css
+STYLESHEET_YDOC=${dbdir}/stylesheets/ydoc.xsl
+STYLESHEET_YCPDOC=${dbdir}/stylesheets/ycpdoc.xsl
+AC_SUBST(STYLESHEET_HTML)
+AC_SUBST(STYLESHEET_PDF)
+AC_SUBST(STYLESHEET_CSS)
+AC_SUBST(STYLESHEET_YDOC)
+AC_SUBST(STYLESHEET_YCPDOC)
+
+
+AC_PATH_PROG(YCPDOC, ycpdoc, false, $PATH:$devtools_ybindir)
+if test "$YCPDOC" = "false"; then
+    AC_MSG_ERROR([ycpdoc is not installed])
+fi
+AC_PATH_PROG(YCPMAKEDEP, ycpmakedep, false, $PATH:$devtools_ybindir)
+if test "$YCPMAKEDEP" = "false"; then
+    AC_MSG_ERROR([ycpmakedep is not installed])
+fi
+AC_PATH_PROG(YCPC, ycpc, false, $PATH:$bindir)
+if test "$YCPC" = "false"; then
+    AC_MSG_ERROR([ycpc is not installed])
+fi
+AC_CHECK_FILE($devtools_yast2dir/data/testsuite/Makefile.testsuite, [], [
+    AC_MSG_WARN([yast2-testsuite.rpm is not installed])
+])
+
+
+AC_PATH_PROG(YDOXYGEN, ydoxygen, false, $PATH:$devtools_ybindir)
+if test "$YDOXYGEN" = "false"; then
+    AC_MSG_ERROR([ydoxygen is not installed])
+fi
+
+AC_PROG_CXX
+AC_PROG_AWK
+AC_PROG_CC
+AC_PROG_CPP
+
+# If we have core, get its Y2CORE_CFLAGS.
+# When building core itself, it has set Y2CORE_CFLAGS elsewhere already
+PKG_CHECK_EXISTS([yast2-core],[
+    PKG_CHECK_MODULES(Y2CORE, yast2-core)
+])
+
+CFLAGS="${CFLAGS} -Wall -Wformat=2 -Wmissing-prototypes"
+CXXFLAGS="${CXXFLAGS} ${Y2CORE_CFLAGS} -Wall -Wformat=2"
+
+: ${AGENT_LIBADD:='-L$(libdir) -lscr -ly2util -lycpvalues'}
+AC_SUBST(AGENT_LIBADD)
+
+AC_DISABLE_STATIC
+AC_PROG_LIBTOOL
+AM_PROG_LIBTOOL dnl for libraries
+
+dnl generate the config header
+AC_CONFIG_HEADERS([config.h]) dnl at the distribution this done
+
+AC_FUNC_ALLOCA
+AC_HEADER_STDC
+
+
+PERL_CFLAGS=`perl -MExtUtils::Embed -e 'ccopts'`
+PERL_LDFLAGS=`perl -MExtUtils::Embed -e 'ldopts'`
+AC_SUBST(PERL_CFLAGS)
+AC_SUBST(PERL_LDFLAGS)
+
+PERL_VENDORARCH=`perl -V:vendorarch | sed "s!.*='!!;s!'.*!!"`
+AC_SUBST(PERL_VENDORARCH)
+
+AC_CONFIG_FILES(Makefile agents-scr/Makefile
+bindings/ycp/Makefile
+bindings/src/Makefile
+bindings/Makefile
+data/Makefile
+disk/src/Makefile
+disk/Makefile
+multipath-simple/src/Makefile
+multipath-simple/Makefile
+scripts/Makefile
+storage/data/Makefile
+storage/doc/autodocs/Makefile
+storage/doc/Makefile
+storage/src/include/Makefile
+storage/src/modules/Makefile
+storage/src/proposal/Makefile
+storage/src/testsuite/data/empty/Makefile
+storage/src/testsuite/data/empty-efi/Makefile
+storage/src/testsuite/data/half-empty/Makefile
+storage/src/testsuite/data/reuse-home/Makefile
+storage/src/testsuite/data/windows/Makefile
+storage/src/testsuite/data/windows-only/Makefile
+storage/src/testsuite/data/windows-only-efi/Makefile
+storage/src/testsuite/data/Makefile
+storage/src/testsuite/Makefile
+storage/src/Makefile
+storage/Makefile)
+AC_OUTPUT
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/configure.in 
new/yast2-storage-2.24.6/configure.in
--- old/yast2-storage-2.24.6/configure.in       2013-07-11 17:39:59.000000000 
+0200
+++ new/yast2-storage-2.24.6/configure.in       1970-01-01 01:00:00.000000000 
+0100
@@ -1,234 +0,0 @@
-dnl configure.in for yast2-storage
-dnl
-dnl -- This file is generated by y2autoconf 2.23.2 - DO NOT EDIT! --
-dnl    (edit configure.in.in instead)
-
-AC_INIT(yast2-storage, 2.24.6, http://bugs.opensuse.org/, yast2-storage)
-dnl Check for presence of file 'RPMNAME'
-AC_CONFIG_SRCDIR([RPMNAME])
-
-dnl Checking host/target/build systems, for make, install etc.
-AC_CANONICAL_TARGET
-dnl Perform program name transformation
-AC_ARG_PROGRAM
-
-AC_PREFIX_DEFAULT(/usr)
-
-dnl long filenames; we use GNU Make extensions and that's ok
-AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
-
-dnl Important YaST2 variables
-VERSION="2.24.6"
-RPMNAME="yast2-storage"
-MAINTAINER="Arvin Schnell <aschn...@suse.de>"
-
-dnl pkgconfig honors lib64
-pkgconfigdir=\${libdir}/pkgconfig
-pkgconfigdatadir=\${datadir}/pkgconfig
-yast2dir=\${prefix}/share/YaST2
-
-ybindir=\${prefix}/lib/YaST2/bin
-# FIXME duplicates execcompdir
-ystartupdir=\${prefix}/lib/YaST2
-plugindir=\${libdir}/YaST2/plugin
-includedir=\${prefix}/include/YaST2
-potdir=\${docdir}/pot
-
-docdir=\${prefix}/share/doc/packages/$RPMNAME
-mandir=\${prefix}/share/man
-
-execcompdir=\${prefix}/lib/YaST2
-agentdir=${execcompdir}/servers_non_y2
-
-ydatadir=${yast2dir}/data
-imagedir=${yast2dir}/images
-themedir=${yast2dir}/theme
-localedir=${yast2dir}/locale
-clientdir=${yast2dir}/clients
-moduledir=${yast2dir}/modules
-yncludedir=${yast2dir}/include
-schemadir=${yast2dir}/schema
-scrconfdir=${yast2dir}/scrconf
-desktopdir=\${prefix}/share/applications/YaST2
-
-AC_SUBST(VERSION)
-AC_SUBST(RPMNAME)
-AC_SUBST(MAINTAINER)
-
-AC_SUBST(pkgconfigdir)
-AC_SUBST(pkgconfigdatadir)
-
-AC_SUBST(yast2dir)
-
-AC_SUBST(ybindir)
-AC_SUBST(ystartupdir)
-AC_SUBST(plugindir)
-AC_SUBST(includedir)
-AC_SUBST(potdir)
-AC_SUBST(execcompdir)
-
-AC_SUBST(docdir)
-AC_SUBST(mandir)
-
-AC_SUBST(ydatadir)
-AC_SUBST(imagedir)
-AC_SUBST(themedir)
-AC_SUBST(localedir)
-AC_SUBST(clientdir)
-AC_SUBST(moduledir)
-AC_SUBST(yncludedir)
-AC_SUBST(schemadir)
-AC_SUBST(scrconfdir)
-AC_SUBST(agentdir)
-AC_SUBST(desktopdir)
-
-fillupdir_d="/var/adm/fillup-templates"
-AC_ARG_WITH(fillupdir,
-    AS_HELP_STRING([--with-fillupdir=DIR],
-                  [where to place fillup templates (default $fillupdir_d.]),
-    [ fillupdir="$withval" ],
-    [ fillupdir="$fillupdir_d" ])
-AC_SUBST(fillupdir)
-
-
-dnl Automake 1.11 enables silent compilation,
-dnl Disable it by "configure --disable-silent-rules" or "make V=1"
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
-AC_CHECK_PROGS([SWIG], [swig])
-if test -z "$SWIG"; then
-       AC_MSG_ERROR([install swig])
-fi
-AC_CHECK_PROGS([SABCMD], [sabcmd])
-if test -z "$SABCMD"; then
-       AC_MSG_ERROR([install sablotron])
-fi
-
-dnl Checks for programs.
-AC_PROG_INSTALL
-dnl The YCP interpreter checks whether dependent ybc files are older
-dnl so we must preserve their timestamps
-INSTALL="${INSTALL} -p"
-AC_PROG_LN_S
-AC_PROG_MAKE_SET
-
-dnl pkgconfig
-AC_ARG_VAR([PKG_CONFIG_PATH], [where to search for pkg-config files])
-dnl devtools
-dnl ...
-
-dnl no need for AC_ARG_VAR
-AC_PATH_PROG(XGETTEXT, xgettext)
-if test -z "$XGETTEXT" ; then
-    AC_MSG_ERROR(xgettext is missing; please install gettext-tools.)
-fi
-
-Y2DEVTOOLS_PREFIX=`pkg-config --print-errors --variable=prefix yast2-devtools`
-AC_SUBST(Y2DEVTOOLS_PREFIX)
-devtools_ybindir=`pkg-config --print-errors --variable=ybindir yast2-devtools`
-devtools_yast2dir=`pkg-config --print-errors --variable=yast2dir 
yast2-devtools`
-
-dnl producing pkg-config for others?
-AM_CONDITIONAL(CREATE_PKGCONFIG, test "x${CREATE_PKGCONFIG}" != x)
-AM_CONDITIONAL(CREATE_PKGCONFIG_NOARCH, test "x${CREATE_PKGCONFIG}" = xnoarch)
-
-dbdir=${devtools_yast2dir}/data/docbook
-STYLESHEET_HTML=${dbdir}/stylesheets/customize-html.xsl
-STYLESHEET_PDF=${dbdir}/stylesheets/customize-fo.xsl
-STYLESHEET_CSS=${dbdir}/css/yast2docs.css
-STYLESHEET_YDOC=${dbdir}/stylesheets/ydoc.xsl
-STYLESHEET_YCPDOC=${dbdir}/stylesheets/ycpdoc.xsl
-AC_SUBST(STYLESHEET_HTML)
-AC_SUBST(STYLESHEET_PDF)
-AC_SUBST(STYLESHEET_CSS)
-AC_SUBST(STYLESHEET_YDOC)
-AC_SUBST(STYLESHEET_YCPDOC)
-
-
-AC_PATH_PROG(YCPDOC, ycpdoc, false, $PATH:$devtools_ybindir)
-if test "$YCPDOC" = "false"; then
-    AC_MSG_ERROR([ycpdoc is not installed])
-fi
-AC_PATH_PROG(YCPMAKEDEP, ycpmakedep, false, $PATH:$devtools_ybindir)
-if test "$YCPMAKEDEP" = "false"; then
-    AC_MSG_ERROR([ycpmakedep is not installed])
-fi
-AC_PATH_PROG(YCPC, ycpc, false, $PATH:$bindir)
-if test "$YCPC" = "false"; then
-    AC_MSG_ERROR([ycpc is not installed])
-fi
-AC_CHECK_FILE($devtools_yast2dir/data/testsuite/Makefile.testsuite, [], [
-    AC_MSG_WARN([yast2-testsuite.rpm is not installed])
-])
-
-
-AC_PATH_PROG(YDOXYGEN, ydoxygen, false, $PATH:$devtools_ybindir)
-if test "$YDOXYGEN" = "false"; then
-    AC_MSG_ERROR([ydoxygen is not installed])
-fi
-
-AC_PROG_CXX
-AC_PROG_AWK
-AC_PROG_CC
-AC_PROG_CPP
-
-# If we have core, get its Y2CORE_CFLAGS.
-# When building core itself, it has set Y2CORE_CFLAGS elsewhere already
-PKG_CHECK_EXISTS([yast2-core],[
-    PKG_CHECK_MODULES(Y2CORE, yast2-core)
-])
-
-CFLAGS="${CFLAGS} -Wall -Wformat=2 -Wmissing-prototypes"
-CXXFLAGS="${CXXFLAGS} ${Y2CORE_CFLAGS} -Wall -Wformat=2"
-
-: ${AGENT_LIBADD:='-L$(libdir) -lscr -ly2util -lycpvalues'}
-AC_SUBST(AGENT_LIBADD)
-
-AC_DISABLE_STATIC
-AC_PROG_LIBTOOL
-AM_PROG_LIBTOOL dnl for libraries
-
-dnl generate the config header
-AC_CONFIG_HEADERS([config.h]) dnl at the distribution this done
-
-AC_FUNC_ALLOCA
-AC_HEADER_STDC
-
-
-PERL_CFLAGS=`perl -MExtUtils::Embed -e 'ccopts'`
-PERL_LDFLAGS=`perl -MExtUtils::Embed -e 'ldopts'`
-AC_SUBST(PERL_CFLAGS)
-AC_SUBST(PERL_LDFLAGS)
-
-PERL_VENDORARCH=`perl -V:vendorarch | sed "s!.*='!!;s!'.*!!"`
-AC_SUBST(PERL_VENDORARCH)
-
-AC_CONFIG_FILES(Makefile agents-scr/Makefile
-bindings/ycp/Makefile
-bindings/src/Makefile
-bindings/Makefile
-data/Makefile
-disk/src/Makefile
-disk/Makefile
-multipath-simple/src/Makefile
-multipath-simple/Makefile
-scripts/Makefile
-storage/data/Makefile
-storage/doc/autodocs/Makefile
-storage/doc/Makefile
-storage/src/include/Makefile
-storage/src/modules/Makefile
-storage/src/proposal/Makefile
-storage/src/testsuite/data/empty/Makefile
-storage/src/testsuite/data/empty-efi/Makefile
-storage/src/testsuite/data/half-empty/Makefile
-storage/src/testsuite/data/reuse-home/Makefile
-storage/src/testsuite/data/windows/Makefile
-storage/src/testsuite/data/windows-only/Makefile
-storage/src/testsuite/data/windows-only-efi/Makefile
-storage/src/testsuite/data/Makefile
-storage/src/testsuite/Makefile
-storage/src/Makefile
-storage/Makefile)
-AC_OUTPUT
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/data/Makefile.in 
new/yast2-storage-2.24.6/data/Makefile.in
--- old/yast2-storage-2.24.6/data/Makefile.in   2013-07-11 17:40:12.000000000 
+0200
+++ new/yast2-storage-2.24.6/data/Makefile.in   2013-07-24 11:58:30.000000000 
+0200
@@ -65,7 +65,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
@@ -556,7 +556,7 @@
 
 dist-hook: check-syntax
 check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
-       @if test "$(client_DATA)"; then \
+       @if test "$(filter %.ycp,client_DATA)"; then \
          if $(CHECK_SYNTAX); then \
            TO_CHECK="$(filter %.ycp,$^)"; \
            echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/disk/Makefile.in 
new/yast2-storage-2.24.6/disk/Makefile.in
--- old/yast2-storage-2.24.6/disk/Makefile.in   2013-07-11 17:40:12.000000000 
+0200
+++ new/yast2-storage-2.24.6/disk/Makefile.in   2013-07-24 11:58:30.000000000 
+0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/disk/src/Makefile.in 
new/yast2-storage-2.24.6/disk/src/Makefile.in
--- old/yast2-storage-2.24.6/disk/src/Makefile.in       2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/disk/src/Makefile.in       2013-07-24 
11:58:30.000000000 +0200
@@ -61,7 +61,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/multipath-simple/Makefile.in 
new/yast2-storage-2.24.6/multipath-simple/Makefile.in
--- old/yast2-storage-2.24.6/multipath-simple/Makefile.in       2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/multipath-simple/Makefile.in       2013-07-24 
11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/multipath-simple/src/Makefile.in 
new/yast2-storage-2.24.6/multipath-simple/src/Makefile.in
--- old/yast2-storage-2.24.6/multipath-simple/src/Makefile.in   2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/multipath-simple/src/Makefile.in   2013-07-24 
11:58:31.000000000 +0200
@@ -61,7 +61,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/scripts/Makefile.in 
new/yast2-storage-2.24.6/scripts/Makefile.in
--- old/yast2-storage-2.24.6/scripts/Makefile.in        2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/scripts/Makefile.in        2013-07-24 
11:58:31.000000000 +0200
@@ -61,7 +61,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/storage/Makefile.in 
new/yast2-storage-2.24.6/storage/Makefile.in
--- old/yast2-storage-2.24.6/storage/Makefile.in        2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/Makefile.in        2013-07-24 
11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/storage/data/Makefile.in 
new/yast2-storage-2.24.6/storage/data/Makefile.in
--- old/yast2-storage-2.24.6/storage/data/Makefile.in   2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/data/Makefile.in   2013-07-24 
11:58:31.000000000 +0200
@@ -61,7 +61,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/storage/doc/Makefile.in 
new/yast2-storage-2.24.6/storage/doc/Makefile.in
--- old/yast2-storage-2.24.6/storage/doc/Makefile.in    2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/doc/Makefile.in    2013-07-24 
11:58:31.000000000 +0200
@@ -61,7 +61,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/doc/autodocs/Makefile.in 
new/yast2-storage-2.24.6/storage/doc/autodocs/Makefile.in
--- old/yast2-storage-2.24.6/storage/doc/autodocs/Makefile.in   2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/doc/autodocs/Makefile.in   2013-07-24 
11:58:31.000000000 +0200
@@ -61,7 +61,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/storage/src/Makefile.in 
new/yast2-storage-2.24.6/storage/src/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/Makefile.in    2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/Makefile.in    2013-07-24 
11:58:31.000000000 +0200
@@ -65,7 +65,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
@@ -787,7 +787,7 @@
 
 dist-hook: check-syntax
 check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
-       @if test "$(client_DATA)"; then \
+       @if test "$(filter %.ycp,client_DATA)"; then \
          if $(CHECK_SYNTAX); then \
            TO_CHECK="$(filter %.ycp,$^)"; \
            echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/storage/src/include/Makefile.in 
new/yast2-storage-2.24.6/storage/src/include/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/include/Makefile.in    2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/include/Makefile.in    2013-07-24 
11:58:31.000000000 +0200
@@ -62,7 +62,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-2.24.6/storage/src/modules/Makefile.in 
new/yast2-storage-2.24.6/storage/src/modules/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/modules/Makefile.in    2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/modules/Makefile.in    2013-07-24 
11:58:31.000000000 +0200
@@ -65,7 +65,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
@@ -579,7 +579,7 @@
 
 dist-hook: check-syntax
 check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
-       @if test "$(client_DATA)"; then \
+       @if test "$(filter %.ycp,client_DATA)"; then \
          if $(CHECK_SYNTAX); then \
            TO_CHECK="$(filter %.ycp,$^)"; \
            echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/proposal/Makefile.in 
new/yast2-storage-2.24.6/storage/src/proposal/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/proposal/Makefile.in   2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/proposal/Makefile.in   2013-07-24 
11:58:31.000000000 +0200
@@ -65,7 +65,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
@@ -556,7 +556,7 @@
 
 dist-hook: check-syntax
 check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
-       @if test "$(client_DATA)"; then \
+       @if test "$(filter %.ycp,client_DATA)"; then \
          if $(CHECK_SYNTAX); then \
            TO_CHECK="$(filter %.ycp,$^)"; \
            echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/testsuite/Makefile.in  2013-07-11 
17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/testsuite/Makefile.in  2013-07-24 
11:58:31.000000000 +0200
@@ -62,7 +62,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/data/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/testsuite/data/Makefile.in     
2013-07-11 17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/testsuite/data/Makefile.in     
2013-07-24 11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/empty/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/data/empty/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/testsuite/data/empty/Makefile.in       
2013-07-11 17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/testsuite/data/empty/Makefile.in       
2013-07-24 11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/empty-efi/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/data/empty-efi/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/testsuite/data/empty-efi/Makefile.in   
2013-07-11 17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/testsuite/data/empty-efi/Makefile.in   
2013-07-24 11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/half-empty/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/data/half-empty/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/testsuite/data/half-empty/Makefile.in  
2013-07-11 17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/testsuite/data/half-empty/Makefile.in  
2013-07-24 11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/reuse-home/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/data/reuse-home/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/testsuite/data/reuse-home/Makefile.in  
2013-07-11 17:40:13.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/testsuite/data/reuse-home/Makefile.in  
2013-07-24 11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/windows/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/data/windows/Makefile.in
--- old/yast2-storage-2.24.6/storage/src/testsuite/data/windows/Makefile.in     
2013-07-11 17:40:14.000000000 +0200
+++ new/yast2-storage-2.24.6/storage/src/testsuite/data/windows/Makefile.in     
2013-07-24 11:58:32.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only/Makefile.in 
new/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only/Makefile.in
--- 
old/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only/Makefile.in    
    2013-07-11 17:40:13.000000000 +0200
+++ 
new/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only/Makefile.in    
    2013-07-24 11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only-efi/Makefile.in
 
new/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only-efi/Makefile.in
--- 
old/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only-efi/Makefile.in
    2013-07-11 17:40:13.000000000 +0200
+++ 
new/yast2-storage-2.24.6/storage/src/testsuite/data/windows-only-efi/Makefile.in
    2013-07-24 11:58:31.000000000 +0200
@@ -60,7 +60,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
        $(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
        $(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-       $(top_srcdir)/configure.in
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to