Add libtool.m4 to aclocal.m4.
authorjbj <devnull@localhost>
Wed, 29 Sep 1999 23:57:42 +0000 (23:57 +0000)
committerjbj <devnull@localhost>
Wed, 29 Sep 1999 23:57:42 +0000 (23:57 +0000)
CVS patchset: 3347
CVS date: 1999/09/29 23:57:42

aclocal.m4
configure.in
po/rpm.pot

index 1b0a992..b7854e4 100644 (file)
@@ -1046,3 +1046,435 @@ AC_DEFUN(AM_LC_MESSAGES,
     fi
   fi])
 
+## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
+## Copyright (C) 1996-1999 Free Software Foundation, Inc.
+## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+##
+## 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 2 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, write to the Free Software
+## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+##
+## As a special exception to the GNU General Public License, if you
+## distribute this file as part of a program that contains a
+## configuration script generated by Autoconf, you may include it under
+## the same distribution terms that you use for the rest of that program.
+
+# serial 40 AC_PROG_LIBTOOL
+AC_DEFUN(AC_PROG_LIBTOOL,
+[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
+
+# Save cache, so that ltconfig can load it
+AC_CACHE_SAVE
+
+# Actually configure libtool.  ac_aux_dir is where install-sh is found.
+CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
+LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
+LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \
+DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \
+${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
+$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
+|| AC_MSG_ERROR([libtool configure failed])
+
+# Reload cache, that may have been modified by ltconfig
+AC_CACHE_LOAD
+
+# This can be used to rebuild libtool when needed
+LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh"
+
+# Always use our own libtool.
+LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+AC_SUBST(LIBTOOL)dnl
+
+# Redirect the config.log output again, so that the ltconfig log is not
+# clobbered by the next message.
+exec 5>>./config.log
+])
+
+AC_DEFUN(AC_LIBTOOL_SETUP,
+[AC_PREREQ(2.13)dnl
+AC_REQUIRE([AC_ENABLE_SHARED])dnl
+AC_REQUIRE([AC_ENABLE_STATIC])dnl
+AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
+AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
+AC_REQUIRE([AC_PROG_RANLIB])dnl
+AC_REQUIRE([AC_PROG_CC])dnl
+AC_REQUIRE([AC_PROG_LD])dnl
+AC_REQUIRE([AC_PROG_NM])dnl
+AC_REQUIRE([AC_PROG_LN_S])dnl
+dnl
+
+# Check for any special flags to pass to ltconfig.
+#
+# the following will cause an existing older ltconfig to fail, so
+# we ignore this at the expense of the cache file... Checking this 
+# will just take longer ... bummer!
+#libtool_flags="--cache-file=$cache_file"
+#
+test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
+test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
+test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
+test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
+test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
+ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN],
+[libtool_flags="$libtool_flags --enable-dlopen"])
+ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
+[libtool_flags="$libtool_flags --enable-win32-dll"])
+AC_ARG_ENABLE(libtool-lock,
+  [  --disable-libtool-lock  avoid locking (might break parallel builds)])
+test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
+test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
+
+# Some flags need to be propagated to the compiler or linker for good
+# libtool support.
+case "$host" in
+*-*-irix6*)
+  # Find out which ABI we are using.
+  echo '[#]line __oline__ "configure"' > conftest.$ac_ext
+  if AC_TRY_EVAL(ac_compile); then
+    case "`/usr/bin/file conftest.o`" in
+    *32-bit*)
+      LD="${LD-ld} -32"
+      ;;
+    *N32*)
+      LD="${LD-ld} -n32"
+      ;;
+    *64-bit*)
+      LD="${LD-ld} -64"
+      ;;
+    esac
+  fi
+  rm -rf conftest*
+  ;;
+
+*-*-sco3.2v5*)
+  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
+  SAVE_CFLAGS="$CFLAGS"
+  CFLAGS="$CFLAGS -belf"
+  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
+    [AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])])
+  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
+    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
+    CFLAGS="$SAVE_CFLAGS"
+  fi
+  ;;
+
+ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
+[*-*-cygwin* | *-*-mingw*)
+  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
+  AC_CHECK_TOOL(AS, as, false)
+  AC_CHECK_TOOL(OBJDUMP, objdump, false)
+  ;;
+])
+esac
+])
+
+# AC_LIBTOOL_DLOPEN - enable checks for dlopen support
+AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
+
+# AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
+AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
+
+# AC_ENABLE_SHARED - implement the --enable-shared flag
+# Usage: AC_ENABLE_SHARED[(DEFAULT)]
+#   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
+#   `yes'.
+AC_DEFUN(AC_ENABLE_SHARED, [dnl
+define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
+AC_ARG_ENABLE(shared,
+changequote(<<, >>)dnl
+<<  --enable-shared[=PKGS]  build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
+changequote([, ])dnl
+[p=${PACKAGE-default}
+case "$enableval" in
+yes) enable_shared=yes ;;
+no) enable_shared=no ;;
+*)
+  enable_shared=no
+  # Look at the argument we got.  We use all the common list separators.
+  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+  for pkg in $enableval; do
+    if test "X$pkg" = "X$p"; then
+      enable_shared=yes
+    fi
+  done
+  IFS="$ac_save_ifs"
+  ;;
+esac],
+enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
+])
+
+# AC_DISABLE_SHARED - set the default shared flag to --disable-shared
+AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
+AC_ENABLE_SHARED(no)])
+
+# AC_ENABLE_STATIC - implement the --enable-static flag
+# Usage: AC_ENABLE_STATIC[(DEFAULT)]
+#   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
+#   `yes'.
+AC_DEFUN(AC_ENABLE_STATIC, [dnl
+define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
+AC_ARG_ENABLE(static,
+changequote(<<, >>)dnl
+<<  --enable-static[=PKGS]  build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
+changequote([, ])dnl
+[p=${PACKAGE-default}
+case "$enableval" in
+yes) enable_static=yes ;;
+no) enable_static=no ;;
+*)
+  enable_static=no
+  # Look at the argument we got.  We use all the common list separators.
+  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+  for pkg in $enableval; do
+    if test "X$pkg" = "X$p"; then
+      enable_static=yes
+    fi
+  done
+  IFS="$ac_save_ifs"
+  ;;
+esac],
+enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
+])
+
+# AC_DISABLE_STATIC - set the default static flag to --disable-static
+AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
+AC_ENABLE_STATIC(no)])
+
+
+# AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
+# Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
+#   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
+#   `yes'.
+AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl
+define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
+AC_ARG_ENABLE(fast-install,
+changequote(<<, >>)dnl
+<<  --enable-fast-install[=PKGS]  optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
+changequote([, ])dnl
+[p=${PACKAGE-default}
+case "$enableval" in
+yes) enable_fast_install=yes ;;
+no) enable_fast_install=no ;;
+*)
+  enable_fast_install=no
+  # Look at the argument we got.  We use all the common list separators.
+  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+  for pkg in $enableval; do
+    if test "X$pkg" = "X$p"; then
+      enable_fast_install=yes
+    fi
+  done
+  IFS="$ac_save_ifs"
+  ;;
+esac],
+enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
+])
+
+# AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
+AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
+AC_ENABLE_FAST_INSTALL(no)])
+
+# AC_PROG_LD - find the path to the GNU or non-GNU linker
+AC_DEFUN(AC_PROG_LD,
+[AC_ARG_WITH(gnu-ld,
+[  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],
+test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
+AC_REQUIRE([AC_PROG_CC])dnl
+AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
+ac_prog=ld
+if test "$ac_cv_prog_gcc" = yes; then
+  # Check if gcc -print-prog-name=ld gives a path.
+  AC_MSG_CHECKING([for ld used by GCC])
+  ac_prog=`($CC -print-prog-name=ld) 2>&5`
+  case "$ac_prog" in
+    # Accept absolute paths.
+changequote(,)dnl
+    [\\/]* | [A-Za-z]:[\\/]*)
+      re_direlt='/[^/][^/]*/\.\./'
+changequote([,])dnl
+      # Canonicalize the path of ld
+      ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
+      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
+       ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
+      done
+      test -z "$LD" && LD="$ac_prog"
+      ;;
+  "")
+    # If it fails, then pretend we aren't using GCC.
+    ac_prog=ld
+    ;;
+  *)
+    # If it is relative, then search for the first ld in PATH.
+    with_gnu_ld=unknown
+    ;;
+  esac
+elif test "$with_gnu_ld" = yes; then
+  AC_MSG_CHECKING([for GNU ld])
+else
+  AC_MSG_CHECKING([for non-GNU ld])
+fi
+AC_CACHE_VAL(ac_cv_path_LD,
+[if test -z "$LD"; then
+  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
+  for ac_dir in $PATH; do
+    test -z "$ac_dir" && ac_dir=.
+    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
+      ac_cv_path_LD="$ac_dir/$ac_prog"
+      # Check to see if the program is GNU ld.  I'd rather use --version,
+      # but apparently some GNU ld's only accept -v.
+      # Break only if it was the GNU/non-GNU ld that we prefer.
+      if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
+       test "$with_gnu_ld" != no && break
+      else
+       test "$with_gnu_ld" != yes && break
+      fi
+    fi
+  done
+  IFS="$ac_save_ifs"
+else
+  ac_cv_path_LD="$LD" # Let the user override the test with a path.
+fi])
+LD="$ac_cv_path_LD"
+if test -n "$LD"; then
+  AC_MSG_RESULT($LD)
+else
+  AC_MSG_RESULT(no)
+fi
+test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
+AC_SUBST(LD)
+AC_PROG_LD_GNU
+])
+
+AC_DEFUN(AC_PROG_LD_GNU,
+[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], ac_cv_prog_gnu_ld,
+[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
+if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
+  ac_cv_prog_gnu_ld=yes
+else
+  ac_cv_prog_gnu_ld=no
+fi])
+])
+
+# AC_PROG_NM - find the path to a BSD-compatible name lister
+AC_DEFUN(AC_PROG_NM,
+[AC_MSG_CHECKING([for BSD-compatible nm])
+AC_CACHE_VAL(ac_cv_path_NM,
+[if test -n "$NM"; then
+  # Let the user override the test.
+  ac_cv_path_NM="$NM"
+else
+  IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
+  for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
+    test -z "$ac_dir" && ac_dir=.
+    if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext ; then
+      # Check to see if the nm accepts a BSD-compat flag.
+      # Adding the `sed 1q' prevents false positives on HP-UX, which says:
+      #   nm: unknown option "B" ignored
+      if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
+       ac_cv_path_NM="$ac_dir/nm -B"
+       break
+      elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
+       ac_cv_path_NM="$ac_dir/nm -p"
+       break
+      else
+       ac_cv_path_NM=${ac_cv_path_NM="$ac_dir/nm"} # keep the first match, but
+       continue # so that we can try to find one that supports BSD flags
+      fi
+    fi
+  done
+  IFS="$ac_save_ifs"
+  test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
+fi])
+NM="$ac_cv_path_NM"
+AC_MSG_RESULT([$NM])
+AC_SUBST(NM)
+])
+
+# AC_CHECK_LIBM - check for math library
+AC_DEFUN(AC_CHECK_LIBM,
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+LIBM=
+case "$host" in
+*-*-beos* | *-*-cygwin*)
+  # These system don't have libm
+  ;;
+*-ncr-sysv4.3*)
+  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
+  AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
+  ;;
+*)
+  AC_CHECK_LIB(m, main, LIBM="-lm")
+  ;;
+esac
+])
+
+# AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
+# the libltdl convenience library, adds --enable-ltdl-convenience to
+# the configure arguments.  Note that LIBLTDL is not AC_SUBSTed, nor
+# is AC_CONFIG_SUBDIRS called.  If DIR is not provided, it is assumed
+# to be `${top_builddir}/libltdl'.  Make sure you start DIR with
+# '${top_builddir}/' (note the single quotes!) if your package is not
+# flat, and, if you're not using automake, define top_builddir as
+# appropriate in the Makefiles.
+AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
+  case "$enable_ltdl_convenience" in
+  no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
+  "") enable_ltdl_convenience=yes
+      ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
+  esac
+  LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdlc.la
+  INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
+])
+
+# AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
+# the libltdl installable library, and adds --enable-ltdl-install to
+# the configure arguments.  Note that LIBLTDL is not AC_SUBSTed, nor
+# is AC_CONFIG_SUBDIRS called.  If DIR is not provided, it is assumed
+# to be `${top_builddir}/libltdl'.  Make sure you start DIR with
+# '${top_builddir}/' (note the single quotes!) if your package is not
+# flat, and, if you're not using automake, define top_builddir as
+# appropriate in the Makefiles.
+# In the future, this macro may have to be called after AC_PROG_LIBTOOL.
+AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
+  AC_CHECK_LIB(ltdl, main,
+  [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
+  [if test x"$enable_ltdl_install" = xno; then
+     AC_MSG_WARN([libltdl not installed, but installation disabled])
+   else
+     enable_ltdl_install=yes
+   fi
+  ])
+  if test x"$enable_ltdl_install" = x"yes"; then
+    ac_configure_args="$ac_configure_args --enable-ltdl-install"
+    LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdl.la
+    INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl'])
+  else
+    ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
+    LIBLTDL="-lltdl"
+    INCLTDL=
+  fi
+])
+
+dnl old names
+AC_DEFUN(AM_PROG_LIBTOOL, [indir([AC_PROG_LIBTOOL])])dnl
+AC_DEFUN(AM_ENABLE_SHARED, [indir([AC_ENABLE_SHARED], $@)])dnl
+AC_DEFUN(AM_ENABLE_STATIC, [indir([AC_ENABLE_STATIC], $@)])dnl
+AC_DEFUN(AM_DISABLE_SHARED, [indir([AC_DISABLE_SHARED], $@)])dnl
+AC_DEFUN(AM_DISABLE_STATIC, [indir([AC_DISABLE_STATIC], $@)])dnl
+AC_DEFUN(AM_PROG_LD, [indir([AC_PROG_LD])])dnl
+AC_DEFUN(AM_PROG_NM, [indir([AC_PROG_NM])])dnl
+
+dnl This is just to silence aclocal about the macro not being used
+ifelse([AC_DISABLE_FAST_INSTALL])dnl
index ebc623d..c07422d 100644 (file)
@@ -894,9 +894,9 @@ AC_OUTPUT([Makefile rpmrc macros lib/Makefile
        tests/Makefile tests/rpmrc tests/macros tests/hello-test/Makefile
        misc/Makefile po/Makefile.in intl/Makefile
        doc/Makefile doc/manual/Makefile doc/pl/Makefile doc/ru/Makefile
-       python/Makefile])
-dnl    [echo timestamp > popt/stamp-h.in
-dnl    echo timestamp > stamp-h.in
+       python/Makefile],
+       [echo timestamp > popt/stamp-h.in
+       echo timestamp > stamp-h.in])
 dnl    touch Makefile.in
 dnl    sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
 
index 51a2b05..64747dd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-09-29 13:13-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,2054 +14,2051 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: ../build.c:23 ../lib/rpminstall.c:222 ../lib/rpminstall.c:382
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
 
-#: ../build.c:33
+#: build.c:33
 msgid "failed build dependencies:\n"
 msgstr ""
 
-#: ../build.c:61
+#: build.c:61
 #, c-format
 msgid "Unable to open spec file: %s\n"
 msgstr ""
 
-#: ../build.c:117 ../build.c:130
+#: build.c:117 build.c:130
 #, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr ""
 
 #. Give up
-#: ../build.c:138
+#: build.c:138
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr ""
 
-#: ../build.c:163
+#: build.c:163
 #, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr ""
 
-#: ../build.c:201
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-#: ../build.c:207
+#: build.c:207
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: ../build.c:258
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:267
+#: build.c:267
 #, c-format
 msgid "Building for target %s\n"
 msgstr ""
 
-#: ../build.c:311
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:321
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:342
+#: build.c:342
 msgid "override build architecture"
 msgstr ""
 
-#: ../build.c:344
+#: build.c:344
 msgid "override build operating system"
 msgstr ""
 
-#: ../build.c:346
+#: build.c:346
 msgid "override build root"
 msgstr ""
 
-#: ../build.c:348 ../rpm.c:457
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr ""
 
-#: ../build.c:350
+#: build.c:350
 msgid "do not execute any stages of the build"
 msgstr ""
 
-#: ../build.c:352
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:354
+#: build.c:354
 msgid "remove sources when done"
 msgstr ""
 
-#: ../build.c:356
+#: build.c:356
 msgid "remove specfile when done"
 msgstr ""
 
-#: ../build.c:358 ../rpm.c:455
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: ../build.c:360
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:362
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../convertdb.c:39
+#: convertdb.c:39
 msgid "RPM database already exists"
 msgstr ""
 
-#: ../convertdb.c:44
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:55
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:61
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:70
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:204
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:210
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 msgid "package not found in database"
 msgstr ""
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:159
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: ../rpm.c:170
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: ../rpm.c:174
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: ../rpm.c:175
+#: rpm.c:175
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: ../rpm.c:183
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr ""
 
-#: ../rpm.c:184
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr ""
 
-#: ../rpm.c:185
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:186
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:187
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 
-#: ../rpm.c:188
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:189
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:190
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 
-#: ../rpm.c:191
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 
-#: ../rpm.c:192 ../rpm.c:201 ../rpm.c:210
+#: rpm.c:192 rpm.c:201 rpm.c:210
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr ""
 
-#: ../rpm.c:193 ../rpm.c:203
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 
-#: ../rpm.c:194
+#: rpm.c:194
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 
-#: ../rpm.c:195
+#: rpm.c:195
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr ""
 
-#: ../rpm.c:196
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:197
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:198
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:199
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 
-#: ../rpm.c:200
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr ""
 
-#: ../rpm.c:202
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: ../rpm.c:204
+#: rpm.c:204
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 
-#: ../rpm.c:205
+#: rpm.c:205
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr ""
 
-#: ../rpm.c:206
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: ../rpm.c:207
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:208
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: ../rpm.c:209
+#: rpm.c:209
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 
-#: ../rpm.c:211
+#: rpm.c:211
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 
-#: ../rpm.c:212
+#: rpm.c:212
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr ""
 
-#: ../rpm.c:213
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:214
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:215
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr ""
 
-#: ../rpm.c:216
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr ""
 
-#: ../rpm.c:217
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr ""
 
-#: ../rpm.c:218
+#: rpm.c:218
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr ""
 
-#: ../rpm.c:219
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:220
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 
-#: ../rpm.c:221
+#: rpm.c:221
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 
-#: ../rpm.c:222
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 
-#: ../rpm.c:223
+#: rpm.c:223
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 
-#: ../rpm.c:224
+#: rpm.c:224
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr ""
 
-#: ../rpm.c:225
+#: rpm.c:225
 msgid "                        [--rmsource] specfile"
 msgstr ""
 
-#: ../rpm.c:226
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: ../rpm.c:227
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: ../rpm.c:228
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: ../rpm.c:229
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: ../rpm.c:230
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: ../rpm.c:231
+#: rpm.c:231
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:232
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr ""
 
-#: ../rpm.c:233
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:234
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: ../rpm.c:268
+#: rpm.c:268
 msgid "usage:"
 msgstr ""
 
-#: ../rpm.c:270
+#: rpm.c:270
 msgid "print this message"
 msgstr ""
 
-#: ../rpm.c:272
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: ../rpm.c:273
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr ""
 
-#: ../rpm.c:274
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:275
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr ""
 
-#: ../rpm.c:277
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr ""
 
-#: ../rpm.c:279
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr ""
 
-#: ../rpm.c:281
+#: rpm.c:281
 msgid "query mode"
 msgstr ""
 
-#: ../rpm.c:282 ../rpm.c:344 ../rpm.c:408 ../rpm.c:436
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437 ../rpm.c:499
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:342 ../rpm.c:372 ../rpm.c:424 ../rpm.c:496
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 msgid "      --dbpath <dir>      "
 msgstr ""
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr ""
 
-#: ../rpm.c:286
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:287
+#: rpm.c:287
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 
-#: ../rpm.c:289
+#: rpm.c:289
 msgid "   of file names as well as the following options:"
 msgstr ""
 
-#: ../rpm.c:290
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:291
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:293
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:294
 msgid "      --httpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:295
+#: rpm.c:295
 msgid "hostname or IP of http proxy"
 msgstr ""
 
-#: ../rpm.c:296
+#: rpm.c:296
 msgid "      --httpport <port>    "
 msgstr ""
 
-#: ../rpm.c:297
+#: rpm.c:297
 msgid "port number of http server (or proxy)"
 msgstr ""
 
-#: ../rpm.c:298
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr ""
 
-#: ../rpm.c:300
+#: rpm.c:300
 msgid "query all packages"
 msgstr ""
 
-#: ../rpm.c:301
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:302
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: ../rpm.c:304
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr ""
 
-#: ../rpm.c:305
+#: rpm.c:305
 msgid "        --triggeredby <pkg>"
 msgstr ""
 
-#: ../rpm.c:306
+#: rpm.c:306
 msgid "query packages triggered by <pkg>"
 msgstr ""
 
-#: ../rpm.c:307
+#: rpm.c:307
 msgid "        --whatprovides <cap>"
 msgstr ""
 
-#: ../rpm.c:308
+#: rpm.c:308
 msgid "query packages which provide <cap> capability"
 msgstr ""
 
-#: ../rpm.c:309
+#: rpm.c:309
 msgid "        --whatrequires <cap>"
 msgstr ""
 
-#: ../rpm.c:310
+#: rpm.c:310
 msgid "query packages which require <cap> capability"
 msgstr ""
 
-#: ../rpm.c:311
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr ""
 
-#: ../rpm.c:313
+#: rpm.c:313
 msgid "display package information"
 msgstr ""
 
-#: ../rpm.c:315
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr ""
 
-#: ../rpm.c:317
+#: rpm.c:317
 msgid "display package file list"
 msgstr ""
 
-#: ../rpm.c:319
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr ""
 
-#: ../rpm.c:321
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr ""
 
-#: ../rpm.c:323
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr ""
 
-#: ../rpm.c:325
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 
-#: ../rpm.c:327
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr ""
 
-#: ../rpm.c:328
+#: rpm.c:328
 msgid "        --requires"
 msgstr ""
 
-#: ../rpm.c:330
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr ""
 
-#: ../rpm.c:332
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr ""
 
-#: ../rpm.c:334
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:338
+#: rpm.c:338
 msgid "    --pipe <cmd>          "
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: ../rpm.c:341
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr ""
 
-#: ../rpm.c:347 ../rpm.c:395 ../rpm.c:429
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: ../rpm.c:349
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: ../rpm.c:351
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr ""
 
-#: ../rpm.c:354
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: ../rpm.c:357
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: ../rpm.c:361
+#: rpm.c:361
 msgid "    --install <packagefile>"
 msgstr ""
 
-#: ../rpm.c:362
+#: rpm.c:362
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: ../rpm.c:363
+#: rpm.c:363
 msgid "install package"
 msgstr ""
 
-#: ../rpm.c:364
+#: rpm.c:364
 msgid "      --excludepath <path>"
 msgstr ""
 
-#: ../rpm.c:365
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:366
+#: rpm.c:366
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: ../rpm.c:369
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: ../rpm.c:370
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:371
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: ../rpm.c:375
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr ""
 
-#: ../rpm.c:377
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: ../rpm.c:380
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: ../rpm.c:382
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: ../rpm.c:385
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr ""
 
-#: ../rpm.c:387
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:389
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr ""
 
-#: ../rpm.c:391
+#: rpm.c:391
 msgid "install documentation"
 msgstr ""
 
-#: ../rpm.c:393 ../rpm.c:427
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: ../rpm.c:397 ../rpm.c:431
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: ../rpm.c:399
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: ../rpm.c:401 ../rpm.c:435
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:403
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr ""
 
-#: ../rpm.c:405
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: ../rpm.c:407
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: ../rpm.c:411
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: ../rpm.c:413
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: ../rpm.c:414
+#: rpm.c:414
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: ../rpm.c:415
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: ../rpm.c:417
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: ../rpm.c:419
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr ""
 
-#: ../rpm.c:421
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: ../rpm.c:423
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: ../rpm.c:433
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr ""
 
-#: ../rpm.c:439
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr ""
 
-#: ../rpm.c:440
+#: rpm.c:440
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: ../rpm.c:441
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: ../rpm.c:443
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: ../rpm.c:445
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: ../rpm.c:447
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: ../rpm.c:449
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: ../rpm.c:451
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: ../rpm.c:453
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: ../rpm.c:459
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr ""
 
-#: ../rpm.c:461
+#: rpm.c:461
 msgid "generate PGP/GPG signature"
 msgstr ""
 
-#: ../rpm.c:462
+#: rpm.c:462
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: ../rpm.c:463
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr ""
 
-#: ../rpm.c:464
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:465
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:467
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:468
 msgid "      --timecheck <secs>  "
 msgstr ""
 
-#: ../rpm.c:469
+#: rpm.c:469
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr ""
 
-#: ../rpm.c:471
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: ../rpm.c:472
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
 msgstr ""
 
-#: ../rpm.c:473
+#: rpm.c:473
 msgid "    --rmsource <spec>     "
 msgstr ""
 
-#: ../rpm.c:474
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr ""
 
-#: ../rpm.c:475
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: ../rpm.c:476
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
-#: ../rpm.c:477
+#: rpm.c:477
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: ../rpm.c:478
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr ""
 
-#: ../rpm.c:479
+#: rpm.c:479
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: ../rpm.c:480
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr ""
 
-#: ../rpm.c:482
+#: rpm.c:482
 msgid "    --checksig <pkg>+     "
 msgstr ""
 
-#: ../rpm.c:483
+#: rpm.c:483
 msgid "verify package signature"
 msgstr ""
 
-#: ../rpm.c:485
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: ../rpm.c:487
+#: rpm.c:487
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: ../rpm.c:489
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr ""
 
-#: ../rpm.c:491
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
-#: ../rpm.c:493
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr ""
 
-#: ../rpm.c:495
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: ../rpm.c:639 ../rpm.c:645 ../rpm.c:652 ../rpm.c:658 ../rpm.c:667
-#: ../rpm.c:674 ../rpm.c:721 ../rpm.c:727 ../rpm.c:761 ../rpm.c:767
-#: ../rpm.c:773 ../rpm.c:781 ../rpm.c:816 ../rpm.c:871 ../rpm.c:878
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: ../rpm.c:660
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: ../rpm.c:662
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: ../rpm.c:678
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 
-#: ../rpm.c:682
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 
-#: ../rpm.c:734 ../rpm.c:740 ../rpm.c:747 ../rpm.c:754 ../rpm.c:885
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: ../rpm.c:789
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr ""
 
-#: ../rpm.c:822
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: ../rpm.c:824
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr ""
 
-#: ../rpm.c:827
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: ../rpm.c:836
+#: rpm.c:836
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: ../rpm.c:845
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:898
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: ../rpm.c:903
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr ""
 
-#: ../rpm.c:906
+#: rpm.c:906
 msgid "unexpected query flags"
 msgstr ""
 
-#: ../rpm.c:909
+#: rpm.c:909
 msgid "unexpected query format"
 msgstr ""
 
-#: ../rpm.c:913
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr ""
 
-#: ../rpm.c:919
+#: rpm.c:919
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: ../rpm.c:922
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: ../rpm.c:925
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: ../rpm.c:928
+#: rpm.c:928
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: ../rpm.c:931
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: ../rpm.c:934
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: ../rpm.c:937
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:941
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:945
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:949
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:953
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:957
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:961
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: ../rpm.c:965
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:969
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:973
+#: rpm.c:973
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:977
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: ../rpm.c:981
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: ../rpm.c:985
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: ../rpm.c:990
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
 msgstr ""
 
-#: ../rpm.c:994
+#: rpm.c:994
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
 msgstr ""
 
-#: ../rpm.c:1000
+#: rpm.c:1000
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
 msgstr ""
 
-#: ../rpm.c:1005
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: ../rpm.c:1010
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: ../rpm.c:1015
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: ../rpm.c:1018
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: ../rpm.c:1023
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 
-#: ../rpm.c:1029
+#: rpm.c:1029
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 
-#: ../rpm.c:1033
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: ../rpm.c:1036
+#: rpm.c:1036
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: ../rpm.c:1039
+#: rpm.c:1039
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: ../rpm.c:1063
+#: rpm.c:1063
 msgid "no files to sign\n"
 msgstr ""
 
-#: ../rpm.c:1068
+#: rpm.c:1068
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: ../rpm.c:1083
+#: rpm.c:1083
 msgid "pgp not found: "
 msgstr ""
 
-#: ../rpm.c:1087
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1089
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: ../rpm.c:1092
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: ../rpm.c:1097
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1103
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: ../rpm.c:1118
+#: rpm.c:1118
 msgid "exec failed\n"
 msgstr ""
 
-#: ../rpm.c:1137
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: ../rpm.c:1148
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr ""
 
-#: ../rpm.c:1160
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr ""
 
-#: ../rpm.c:1173
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: ../rpm.c:1230
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr ""
 
-#: ../rpm.c:1232
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr ""
 
-#: ../rpm.c:1244
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: ../rpm.c:1294
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr ""
 
-#: ../rpm.c:1317
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: ../rpm.c:1322
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr ""
 
-#: ../rpm.c:1339
+#: rpm.c:1339
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: ../rpm.c:1343
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr ""
 
-#: ../rpm2cpio.c:34
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:38
+#: rpm2cpio.c:38
 msgid "error reading header from package\n"
 msgstr ""
 
-#: ../build/build.c:83 ../build/pack.c:263
+#: build/build.c:83 build/pack.c:263
 msgid "Unable to open temp file"
 msgstr ""
 
-#: ../build/build.c:124
+#: build/build.c:124
 #, c-format
 msgid "Executing: %s\n"
 msgstr ""
 
-#: ../build/build.c:128
+#: build/build.c:128
 #, c-format
 msgid "Exec of %s failed (%s)"
 msgstr ""
 
-#: ../build/build.c:138
+#: build/build.c:138
 #, c-format
 msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-#: ../build/expression.c:208
+#: build/expression.c:208
 msgid "syntax error while parsing =="
 msgstr ""
 
-#: ../build/expression.c:238
+#: build/expression.c:238
 msgid "syntax error while parsing &&"
 msgstr ""
 
-#: ../build/expression.c:247
+#: build/expression.c:247
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: ../build/expression.c:289
+#: build/expression.c:289
 msgid "parse error in expression"
 msgstr ""
 
-#: ../build/expression.c:319
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:337
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:356
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:372
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:411 ../build/expression.c:456
-#: ../build/expression.c:513 ../build/expression.c:600
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:424
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:472
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:613
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:644 ../build/expression.c:689
+#: build/expression.c:644 build/expression.c:689
 msgid "syntax error in expression"
 msgstr ""
 
-#: ../build/files.c:224
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:267 ../build/files.c:349 ../build/files.c:512
+#: build/files.c:267 build/files.c:349 build/files.c:512
 #, c-format
 msgid "Missing '(' in %s %s"
 msgstr ""
 
-#: ../build/files.c:278 ../build/files.c:466 ../build/files.c:523
+#: build/files.c:278 build/files.c:466 build/files.c:523
 #, c-format
 msgid "Missing ')' in %s(%s"
 msgstr ""
 
-#: ../build/files.c:316 ../build/files.c:491
+#: build/files.c:316 build/files.c:491
 #, c-format
 msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:365
+#: build/files.c:365
 #, c-format
 msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:403
+#: build/files.c:403
 #, c-format
 msgid "Bad syntax: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:413
+#: build/files.c:413
 #, c-format
 msgid "Bad mode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:425
+#: build/files.c:425
 #, c-format
 msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:549
+#: build/files.c:549
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:559
+#: build/files.c:559
 msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:651
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:657
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 #. We already got a file -- error
-#: ../build/files.c:682
+#: build/files.c:682
 #, c-format
 msgid "Two files on one line: %s"
 msgstr ""
 
-#: ../build/files.c:695
+#: build/files.c:695
 #, c-format
 msgid "File must begin with \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:707
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
-#: ../build/files.c:792
+#: build/files.c:792
 #, c-format
 msgid "File listed twice: %s"
 msgstr ""
 
-#: ../build/files.c:952
+#: build/files.c:952
 #, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr ""
 
-#: ../build/files.c:962 ../build/files.c:1099
+#: build/files.c:962 build/files.c:1099
 #, c-format
 msgid "File not found: %s"
 msgstr ""
 
-#: ../build/files.c:1005
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:1019
+#: build/files.c:1019
 #, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr ""
 
-#: ../build/files.c:1083
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1140
+#: build/files.c:1140
 msgid "Could not open %%files file: %s"
 msgstr ""
 
-#: ../build/files.c:1147 ../build/pack.c:484
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1469 ../build/parsePrep.c:29
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1522
+#: build/files.c:1522
 #, c-format
 msgid "Couldn't exec %s"
 msgstr ""
 
-#: ../build/files.c:1526
+#: build/files.c:1526
 #, c-format
 msgid "Couldn't fork %s"
 msgstr ""
 
-#: ../build/files.c:1605
+#: build/files.c:1605
 #, c-format
 msgid "%s failed"
 msgstr ""
 
-#: ../build/files.c:1609
+#: build/files.c:1609
 #, c-format
 msgid "failed to write all data to %s"
 msgstr ""
 
-#: ../build/files.c:1695
+#: build/files.c:1695
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: ../build/files.c:1723 ../build/files.c:1732
+#: build/files.c:1723 build/files.c:1732
 #, c-format
 msgid "Failed to find %s:"
 msgstr ""
 
-#: ../build/files.c:1838
+#: build/files.c:1838
 #, c-format
 msgid "Processing files: %s\n"
 msgstr ""
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:131
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:148
+#: build/pack.c:148
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:183
+#: build/pack.c:183
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:193
+#: build/pack.c:193
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:213
+#: build/pack.c:213
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: ../build/pack.c:219
+#: build/pack.c:219
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: ../build/pack.c:274
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
-#: ../build/pack.c:305
+#: build/pack.c:305
 #, c-format
 msgid "Could not open %s\n"
 msgstr ""
 
-#: ../build/pack.c:337 ../build/pack.c:379
+#: build/pack.c:337 build/pack.c:379
 #, c-format
 msgid "Unable to write package: %s"
 msgstr ""
 
-#: ../build/pack.c:352
+#: build/pack.c:352
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: ../build/pack.c:369
+#: build/pack.c:369
 #, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr ""
 
-#: ../build/pack.c:394
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: ../build/pack.c:411 ../build/pack.c:435
+#: build/pack.c:411 build/pack.c:435
 #, c-format
 msgid "create archive failed on file %s: %s"
 msgstr ""
 
-#: ../build/pack.c:454
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:461
+#: build/pack.c:461
 #, c-format
 msgid "cpio_copy read failed: %s"
 msgstr ""
 
-#: ../build/pack.c:540
+#: build/pack.c:540
 #, c-format
 msgid "Could not open PreIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:547
+#: build/pack.c:547
 #, c-format
 msgid "Could not open PreUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:554
+#: build/pack.c:554
 #, c-format
 msgid "Could not open PostIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:561
+#: build/pack.c:561
 #, c-format
 msgid "Could not open PostUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:569
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:585
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:111
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:126
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:131
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:139 ../build/parseChangelog.c:150
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:157
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:33
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:46 ../build/parseFiles.c:40
-#: ../build/parseScript.c:168
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:60 ../build/parseFiles.c:54
-#: ../build/parseScript.c:182
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:70 ../build/parseFiles.c:64
-#: ../build/parseScript.c:192
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:82
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:27
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:72
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:141
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:146
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:151
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:156
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:170
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:192
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:239
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Unable to stat icon: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:250
+#: build/parsePreamble.c:250
 #, c-format
 msgid "Unable to read icon: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:260
+#: build/parsePreamble.c:260
 #, c-format
 msgid "Unknown icon type: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:323
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:331
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:354 ../build/parsePreamble.c:361
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:399
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:412
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:424
+#: build/parsePreamble.c:424
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:436
+#: build/parsePreamble.c:436
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:499
+#: build/parsePreamble.c:499
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:509
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:656
+#: build/parsePreamble.c:656
 #, c-format
 msgid "Bad package specification: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:662
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:689
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:714
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
-#: ../build/parsePrep.c:25
+#: build/parsePrep.c:25
 #, c-format
 msgid "Bad source: %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:51
+#: build/parsePrep.c:51
 #, c-format
 msgid "No patch number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:117
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:136
+#: build/parsePrep.c:136
 #, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:191
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:206
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:227
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:351
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:359
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:371
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:377
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:384
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:388
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:424
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:91
+#: build/parseReqs.c:91
 #, c-format
 msgid ""
 "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
 msgstr ""
 
-#: ../build/parseReqs.c:102
+#: build/parseReqs.c:102
 #, c-format
 msgid "line %d: File name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:134
+#: build/parseReqs.c:134
 #, c-format
 msgid "line %d: Versioned file name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:146
+#: build/parseReqs.c:146
 #, c-format
 msgid "line %d: Version not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:172
+#: build/parseReqs.c:172
 #, c-format
 msgid "line %d: Version required: %s"
 msgstr ""
 
-#: ../build/parseScript.c:136
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:146 ../build/parseScript.c:210
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:156
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:201
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
-#: ../build/parseSpec.c:126
+#: build/parseSpec.c:126
 #, c-format
 msgid "line %d: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:172
+#: build/parseSpec.c:172
 #, c-format
 msgid "Unable to open: %s\n"
 msgstr ""
 
-#: ../build/parseSpec.c:184
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-#: ../build/parseSpec.c:243
+#: build/parseSpec.c:243
 #, c-format
 msgid "%s:%d: parseExpressionBoolean returns %d"
 msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:251
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:262
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:276 ../build/parseSpec.c:285
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:366
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:449
+#: build/parseSpec.c:449
 msgid "No buildable architectures"
 msgstr ""
 
-#: ../build/parseSpec.c:494
+#: build/parseSpec.c:494
 msgid "Package has no %%description: %s"
 msgstr ""
 
-#: ../build/spec.c:31
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:237
+#: build/spec.c:237
 #, c-format
 msgid "line %d: Bad number: %s"
 msgstr ""
 
-#: ../build/spec.c:243
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:301
+#: build/spec.c:301
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:385
+#: lib/cpio.c:385
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:391
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:582
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1044
+#: lib/cpio.c:1044
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: ../lib/cpio.c:1047
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1048
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1066
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1067
+#: lib/cpio.c:1067
 msgid "Unknown file type"
 msgstr ""
 
-#: ../lib/cpio.c:1068
+#: lib/cpio.c:1068
 msgid "Missing hard link"
 msgstr ""
 
-#: ../lib/cpio.c:1069
+#: lib/cpio.c:1069
 msgid "Internal error"
 msgstr ""
 
-#: ../lib/cpio.c:1078
+#: lib/cpio.c:1078
 msgid " failed - "
 msgstr ""
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr ""
 
-#: ../lib/dbindex.c:84
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr ""
 
-#: ../lib/dbindex.c:111
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: ../lib/dbindex.c:118
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: ../lib/depends.c:339
+#: lib/depends.c:339
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: ../lib/depends.c:368
+#: lib/depends.c:368
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: ../lib/depends.c:460
+#: lib/depends.c:460
 msgid "dbrecMatchesDepFlags() failed to read header"
 msgstr ""
 
-#: ../lib/depends.c:695
+#: lib/depends.c:695
 #, c-format
 msgid "%s: %s satisfied by added package.\n"
 msgstr ""
 
-#: ../lib/depends.c:712
+#: lib/depends.c:712
 #, c-format
 msgid "%s: %s satisfied by added provide.\n"
 msgstr ""
 
-#: ../lib/depends.c:717
+#: lib/depends.c:717
 #, c-format
 msgid "%s: %s satisfied by added file list.\n"
 msgstr ""
 
-#: ../lib/depends.c:747
+#: lib/depends.c:747
 #, c-format
 msgid "%s: %s satisfied by rpmrc provides.\n"
 msgstr ""
 
-#: ../lib/depends.c:775
+#: lib/depends.c:775
 #, c-format
 msgid "%s: %s satisfied by db file lists.\n"
 msgstr ""
 
-#: ../lib/depends.c:797
+#: lib/depends.c:797
 #, c-format
 msgid "%s: %s satisfied by db provides.\n"
 msgstr ""
 
-#: ../lib/depends.c:819
+#: lib/depends.c:819
 #, c-format
 msgid "%s: %s satisfied by db packages.\n"
 msgstr ""
 
-#: ../lib/depends.c:832
+#: lib/depends.c:832
 #, c-format
 msgid "%s: %s satisfied by rpmlib version.\n"
 msgstr ""
 
-#: ../lib/depends.c:842
+#: lib/depends.c:842
 #, c-format
 msgid "%s: %s unsatisfied.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: ../lib/depends.c:890
+#: lib/depends.c:890
 #, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: ../lib/depends.c:952
+#: lib/depends.c:952
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: ../lib/depends.c:1007 ../lib/depends.c:1311
+#: lib/depends.c:1007 lib/depends.c:1311
 #, c-format
 msgid "cannot read header at %d for dependency check"
 msgstr ""
 
-#: ../lib/depends.c:1102
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: ../lib/falloc.c:160
+#: lib/falloc.c:160
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2071,1328 +2068,1326 @@ msgid ""
 "if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:66 ../lib/formats.c:84 ../lib/formats.c:105
-#: ../lib/formats.c:138 ../lib/header.c:2122 ../lib/header.c:2139
-#: ../lib/header.c:2159
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr ""
 
-#: ../lib/fs.c:40
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: ../lib/fs.c:75 ../lib/fs.c:253
+#: lib/fs.c:75 lib/fs.c:253
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: ../lib/fs.c:114
+#: lib/fs.c:114
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: ../lib/fs.c:119
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: ../lib/fs.c:274
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/ftp.c:666
+#: lib/ftp.c:666
 msgid "Success"
 msgstr ""
 
-#: ../lib/ftp.c:669
+#: lib/ftp.c:669
 msgid "Bad server response"
 msgstr ""
 
-#: ../lib/ftp.c:672
+#: lib/ftp.c:672
 msgid "Server IO error"
 msgstr ""
 
-#: ../lib/ftp.c:675
+#: lib/ftp.c:675
 msgid "Server timeout"
 msgstr ""
 
-#: ../lib/ftp.c:678
+#: lib/ftp.c:678
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: ../lib/ftp.c:681
+#: lib/ftp.c:681
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: ../lib/ftp.c:684
+#: lib/ftp.c:684
 msgid "Failed to connect to server"
 msgstr ""
 
-#: ../lib/ftp.c:687
+#: lib/ftp.c:687
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: ../lib/ftp.c:690
+#: lib/ftp.c:690
 msgid "IO error to local file"
 msgstr ""
 
-#: ../lib/ftp.c:693
+#: lib/ftp.c:693
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: ../lib/ftp.c:696
+#: lib/ftp.c:696
 msgid "File not found on server"
 msgstr ""
 
-#: ../lib/ftp.c:699
+#: lib/ftp.c:699
 msgid "Abort in progress"
 msgstr ""
 
-#: ../lib/ftp.c:703
+#: lib/ftp.c:703
 msgid "Unknown or unexpected error"
 msgstr ""
 
 #. This should not be allowed
-#: ../lib/header.c:169
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: ../lib/header.c:200
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: ../lib/header.c:763
+#: lib/header.c:763
 #, c-format
 msgid "Data type %d not supprted\n"
 msgstr ""
 
-#: ../lib/header.c:1119
+#: lib/header.c:1119
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: ../lib/header.c:1520
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: ../lib/header.c:1548
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr ""
 
-#: ../lib/header.c:1560
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr ""
 
-#: ../lib/header.c:1570
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr ""
 
-#: ../lib/header.c:1585
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr ""
 
-#: ../lib/header.c:1611
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr ""
 
-#: ../lib/header.c:1627
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr ""
 
-#: ../lib/header.c:1629
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr ""
 
-#: ../lib/header.c:1682
+#: lib/header.c:1682
 msgid "? expected in expression"
 msgstr ""
 
-#: ../lib/header.c:1689
+#: lib/header.c:1689
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: ../lib/header.c:1699 ../lib/header.c:1731
+#: lib/header.c:1699 lib/header.c:1731
 msgid "} expected in expression"
 msgstr ""
 
-#: ../lib/header.c:1706
+#: lib/header.c:1706
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: ../lib/header.c:1719
+#: lib/header.c:1719
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: ../lib/header.c:1738
+#: lib/header.c:1738
 msgid "| expected at end of expression"
 msgstr ""
 
-#: ../lib/header.c:1905
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr ""
 
-#: ../lib/install.c:141 ../lib/uninstall.c:179
+#: lib/install.c:141 lib/uninstall.c:179
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: ../lib/install.c:159
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:167
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:195
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:358
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:359
+#: lib/install.c:359
 msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:402
+#: lib/install.c:402
 msgid "installing a source package\n"
 msgstr ""
 
-#: ../lib/install.c:413
+#: lib/install.c:413
 #, c-format
 msgid "cannot create %s: %s"
 msgstr ""
 
-#: ../lib/install.c:421 ../lib/install.c:443
+#: lib/install.c:421 lib/install.c:443
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: ../lib/install.c:425
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:436
+#: lib/install.c:436
 #, c-format
 msgid "cannot create %s"
 msgstr ""
 
-#: ../lib/install.c:447
+#: lib/install.c:447
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:481 ../lib/install.c:509
+#: lib/install.c:481 lib/install.c:509
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: ../lib/install.c:530
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/install.c:532 ../lib/install.c:810 ../lib/uninstall.c:26
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: ../lib/install.c:622
+#: lib/install.c:622
 msgid "source package expected, binary found"
 msgstr ""
 
-#: ../lib/install.c:679
+#: lib/install.c:679
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: ../lib/install.c:740
+#: lib/install.c:740
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: ../lib/install.c:745
+#: lib/install.c:745
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: ../lib/install.c:770
+#: lib/install.c:770
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: ../lib/install.c:806
+#: lib/install.c:806
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: ../lib/install.c:880
+#: lib/install.c:880
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: ../lib/lookup.c:35
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: ../lib/macro.c:149
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:243
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:278
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:457
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:483
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:489
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:494
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:499
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:524
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:601
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:698
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:870
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:936 ../lib/macro.c:952
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:992
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1115
+#: lib/macro.c:1115
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: ../lib/macro.c:1196
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
-#: ../lib/macro.c:1343 ../lib/macro.c:1351
+#: lib/macro.c:1343 lib/macro.c:1351
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: ../lib/macro.c:1354
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:55
+#: lib/messages.c:55
 msgid "warning: "
 msgstr ""
 
-#: ../lib/messages.c:64
+#: lib/messages.c:64
 msgid "error: "
 msgstr ""
 
-#: ../lib/messages.c:73
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr ""
 
-#: ../lib/messages.c:82
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:367 ../lib/misc.c:373 ../lib/misc.c:380
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: ../lib/oldheader.c:299
+#: lib/oldheader.c:299
 #, c-format
 msgid "bad file state: %s"
 msgstr ""
 
-#: ../lib/package.c:234
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:239
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:242
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:252
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:298
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 
-#: ../lib/problems.c:43
+#: lib/problems.c:43
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: ../lib/problems.c:46
+#: lib/problems.c:46
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: ../lib/problems.c:66
+#: lib/problems.c:66
 #, c-format
 msgid "package %s-%s-%s is for a different architecture"
 msgstr ""
 
-#: ../lib/problems.c:71
+#: lib/problems.c:71
 #, c-format
 msgid "package %s-%s-%s is for a different operating system"
 msgstr ""
 
-#: ../lib/problems.c:76
+#: lib/problems.c:76
 #, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr ""
 
-#: ../lib/problems.c:81
+#: lib/problems.c:81
 #, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:86
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:92
+#: lib/problems.c:92
 #, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:98
+#: lib/problems.c:98
 #, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr ""
 
-#: ../lib/problems.c:104
+#: lib/problems.c:104
 #, c-format
 msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:116
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:138
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: ../lib/query.c:180
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr ""
 
-#: ../lib/query.c:233
+#: lib/query.c:233
 msgid "normal        "
 msgstr ""
 
-#: ../lib/query.c:235
+#: lib/query.c:235
 msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:237
+#: lib/query.c:237
 msgid "not installed "
 msgstr ""
 
-#: ../lib/query.c:239
+#: lib/query.c:239
 msgid "net shared    "
 msgstr ""
 
-#: ../lib/query.c:241
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: ../lib/query.c:245
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:261 ../lib/query.c:291
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:400
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:404
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr ""
 
-#: ../lib/query.c:442
+#: lib/query.c:442
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: ../lib/query.c:455
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: ../lib/query.c:464 ../lib/rpminstall.c:203
+#: lib/query.c:464 lib/rpminstall.c:203
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: ../lib/query.c:467
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: ../lib/query.c:494
+#: lib/query.c:494
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: ../lib/query.c:519
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr ""
 
-#: ../lib/query.c:530
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: ../lib/query.c:540
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: ../lib/query.c:550
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: ../lib/query.c:560
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: ../lib/query.c:575
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: ../lib/query.c:578
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: ../lib/query.c:591
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: ../lib/query.c:594
+#: lib/query.c:594
 #, c-format
 msgid "package record number: %d\n"
 msgstr ""
 
-#: ../lib/query.c:597
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: ../lib/query.c:609 ../lib/rpminstall.c:393
+#: lib/query.c:609 lib/rpminstall.c:393
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: ../lib/query.c:612
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr ""
 
-#: ../lib/query.c:634
+#: lib/query.c:634
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr ""
 
-#: ../lib/query.c:691
+#: lib/query.c:691
 msgid "query package owning file"
 msgstr ""
 
-#: ../lib/query.c:693
+#: lib/query.c:693
 msgid "query packages in group"
 msgstr ""
 
-#: ../lib/query.c:695
+#: lib/query.c:695
 msgid "query a package file"
 msgstr ""
 
-#: ../lib/query.c:699
+#: lib/query.c:699
 msgid "query a spec file"
 msgstr ""
 
-#: ../lib/query.c:701
+#: lib/query.c:701
 msgid "query the pacakges triggered by the package"
 msgstr ""
 
-#: ../lib/query.c:703
+#: lib/query.c:703
 msgid "query the packages which require a capability"
 msgstr ""
 
-#: ../lib/query.c:705
+#: lib/query.c:705
 msgid "query the packages which provide a capability"
 msgstr ""
 
-#: ../lib/query.c:742
+#: lib/query.c:742
 msgid "list all configuration files"
 msgstr ""
 
-#: ../lib/query.c:744
+#: lib/query.c:744
 msgid "list all documentation files"
 msgstr ""
 
-#: ../lib/query.c:746
+#: lib/query.c:746
 msgid "dump basic file information"
 msgstr ""
 
-#: ../lib/query.c:748
+#: lib/query.c:748
 msgid "list files in package"
 msgstr ""
 
-#: ../lib/query.c:752
+#: lib/query.c:752
 msgid "use the following query format"
 msgstr ""
 
-#: ../lib/query.c:754
+#: lib/query.c:754
 msgid "substitute i18n sections from the following catalogue"
 msgstr ""
 
-#: ../lib/query.c:757
+#: lib/query.c:757
 msgid "display the states of the listed files"
 msgstr ""
 
-#: ../lib/query.c:759
+#: lib/query.c:759
 msgid "display a verbose file listing"
 msgstr ""
 
-#: ../lib/rebuilddb.c:20
+#: lib/rebuilddb.c:20
 #, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:24 ../lib/rpmdb.c:69 ../lib/rpmdb.c:88
-#: ../lib/rpmdb.c:105
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr ""
 
-#: ../lib/rebuilddb.c:33
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: ../lib/rebuilddb.c:37
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:39
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: ../lib/rebuilddb.c:43
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:50
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:60 ../lib/rebuilddb.c:78
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr ""
 
-#: ../lib/rebuilddb.c:72
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: ../lib/rebuilddb.c:91
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:99
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:101
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
-#: ../lib/rebuilddb.c:107
+#: lib/rebuilddb.c:107
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:31
 #, c-format
 msgid "%s: fdOpen failed: %s\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:42
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:74
 #, c-format
 msgid "%s: fdWrite failed: %s\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: fdRead failed: %s\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:113 ../lib/rpmchecksig.c:242
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:118
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:122
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:130 ../lib/rpmchecksig.c:256
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:134 ../lib/rpmchecksig.c:261
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:167
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: rpmWriteSignature failed\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:248
+#: lib/rpmchecksig.c:248
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:408
+#: lib/rpmchecksig.c:408
 msgid "NOT OK"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:409 ../lib/rpmchecksig.c:423
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:411 ../lib/rpmchecksig.c:425
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
 msgid ") "
 msgstr ""
 
-#: ../lib/rpmchecksig.c:412 ../lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:414 ../lib/rpmchecksig.c:428
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
 msgid ")"
 msgstr ""
 
-#: ../lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:422
 msgid "OK"
 msgstr ""
 
-#: ../lib/rpmdb.c:184
+#: lib/rpmdb.c:184
 #, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:193 ../lib/url.c:431
+#: lib/rpmdb.c:193 lib/url.c:431
 #, c-format
 msgid "failed to open %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:206 ../lib/rpmdb.c:214
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr ""
 
-#: ../lib/rpmdb.c:207
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr ""
 
-#: ../lib/rpmdb.c:215
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr ""
 
-#: ../lib/rpmdb.c:246
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:439
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr ""
 
-#: ../lib/rpmdb.c:450
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr ""
 
-#: ../lib/rpmdb.c:475 ../lib/uninstall.c:85
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr ""
 
-#: ../lib/rpmdb.c:483
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr ""
 
-#: ../lib/rpmdb.c:485
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:490
+#: lib/rpmdb.c:490
 msgid "package has no group\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:492
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:499
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:514
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:526
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:537
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:554
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:563
+#: lib/rpmdb.c:563
 msgid "package has no files\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:645
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr ""
 
-#: ../lib/rpmdb.c:711
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr ""
 
-#: ../lib/rpmdb.c:720
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpminstall.c:128
+#: lib/rpminstall.c:128
 msgid "counting packages to install\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:132
+#: lib/rpminstall.c:132
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:141
+#: lib/rpminstall.c:141
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:152
+#: lib/rpminstall.c:152
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:161
+#: lib/rpminstall.c:161
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:165
+#: lib/rpminstall.c:165
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:182
+#: lib/rpminstall.c:182
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:191 ../lib/rpminstall.c:332
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
 #, c-format
 msgid "cannot open file %s\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:207 ../lib/rpminstall.c:469
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:243
+#: lib/rpminstall.c:243
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:261
+#: lib/rpminstall.c:261
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:266
+#: lib/rpminstall.c:266
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:283
+#: lib/rpminstall.c:283
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:294
+#: lib/rpminstall.c:294
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:312
+#: lib/rpminstall.c:312
 msgid "installing binary packages\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:397
+#: lib/rpminstall.c:397
 #, c-format
 msgid "searching for package %s\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:406
+#: lib/rpminstall.c:406
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:432
+#: lib/rpminstall.c:432
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:459
+#: lib/rpminstall.c:459
 #, c-format
 msgid "cannot open %s\n"
 msgstr ""
 
-#: ../lib/rpminstall.c:464
+#: lib/rpminstall.c:464
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: ../lib/rpmlead.c:48
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:177
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:180
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:328
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:332
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:339
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:373
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:378
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:561
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
-#: ../lib/rpmrc.c:576
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr ""
 
-#: ../lib/rpmrc.c:608
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr ""
 
-#: ../lib/rpmrc.c:638
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:655 ../lib/rpmrc.c:729
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:694
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr ""
 
-#: ../lib/rpmrc.c:680
+#: lib/rpmrc.c:680
 #, c-format
 msgid "cannot open %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:721
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:788
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:1147
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1148
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:106
+#: lib/signature.c:106
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:107
+#: lib/signature.c:107
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:108
+#: lib/signature.c:108
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:112
+#: lib/signature.c:112
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: ../lib/signature.c:134
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr ""
 
-#: ../lib/signature.c:137
+#: lib/signature.c:137
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: ../lib/signature.c:149
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: ../lib/signature.c:153
+#: lib/signature.c:153
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: ../lib/signature.c:160 ../lib/signature.c:202
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:161 ../lib/signature.c:203
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:266
+#: lib/signature.c:266
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: ../lib/signature.c:277
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:284
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: ../lib/signature.c:289
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:300 ../lib/signature.c:377
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr ""
 
-#: ../lib/signature.c:305
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:343 ../lib/signature.c:686
+#: lib/signature.c:343 lib/signature.c:686
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: ../lib/signature.c:354
+#: lib/signature.c:354
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:361
+#: lib/signature.c:361
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: ../lib/signature.c:366
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:382
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:409
+#: lib/signature.c:409
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: ../lib/signature.c:415
+#: lib/signature.c:415
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: ../lib/signature.c:492 ../lib/signature.c:554
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: ../lib/signature.c:552 ../lib/signature.c:625
+#: lib/signature.c:552 lib/signature.c:625
 msgid "exec failed!\n"
 msgstr ""
 
-#: ../lib/signature.c:627
+#: lib/signature.c:627
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: ../lib/signature.c:715
+#: lib/signature.c:715
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: ../lib/signature.c:719 ../lib/signature.c:772
+#: lib/signature.c:719 lib/signature.c:772
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: ../lib/signature.c:752
+#: lib/signature.c:752
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: ../lib/signature.c:764
+#: lib/signature.c:764
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: ../lib/transaction.c:363
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:370
+#: lib/transaction.c:370
 #, c-format
 msgid "excluding %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:489
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:37
+#: lib/uninstall.c:37
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: ../lib/uninstall.c:40
+#: lib/uninstall.c:40
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: ../lib/uninstall.c:48
+#: lib/uninstall.c:48
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: ../lib/uninstall.c:97
+#: lib/uninstall.c:97
 #, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr ""
 
-#: ../lib/uninstall.c:130
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:191
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:204
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:365
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr ""
 
-#: ../lib/url.c:144
+#: lib/url.c:144
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: ../lib/url.c:168 ../lib/url.c:194
+#: lib/url.c:168 lib/url.c:194
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: ../lib/url.c:279
+#: lib/url.c:279
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX PARANOIA
-#: ../lib/url.c:317
+#: lib/url.c:317
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: ../lib/url.c:446
+#: lib/url.c:446
 #, c-format
 msgid "failed to create %s\n"
 msgstr ""
 
-#: ../lib/verify.c:36
+#: lib/verify.c:36
 msgid "don't verify files in package"
 msgstr ""
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: ../lib/verify.c:319
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: ../lib/verify.c:367
+#: lib/verify.c:367
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""