diff options
author | Juergen Daubert <jue@jue.li> | 2020-10-16 10:27:37 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2020-10-16 10:27:37 +0200 |
commit | da6bfb0a60107e4a10b1cea330172e0842c4f2c6 (patch) | |
tree | 94bd0a00fdaea10bb23163e3fbb8752cbbea3d69 | |
parent | ac030e3530d3e029d2bcb501ed1edabd84e7f1d9 (diff) | |
download | prt-get-da6bfb0a60107e4a10b1cea330172e0842c4f2c6.tar.gz prt-get-da6bfb0a60107e4a10b1cea330172e0842c4f2c6.tar.xz |
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/pkgdb.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -2585,7 +2585,7 @@ fi # Define the identity of the package. PACKAGE=prt-get - VERSION=5.19.4 + VERSION=5.19.5 cat >>confdefs.h <<_ACEOF diff --git a/configure.in b/configure.in index 2b6e84e..a6ab6f7 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_INIT AC_CONFIG_SRCDIR([src/prtget.cpp]) -AM_INIT_AUTOMAKE(prt-get,5.19.4) +AM_INIT_AUTOMAKE(prt-get,5.19.5) dnl Determine default prefix diff --git a/src/pkgdb.cpp b/src/pkgdb.cpp index 48eb279..c80c215 100644 --- a/src/pkgdb.cpp +++ b/src/pkgdb.cpp @@ -27,7 +27,7 @@ using namespace std; const string PkgDB::PKGDB = "/var/lib/pkg/db"; -const string PkgDB::ALIAS_STORE = LOCALSTATEDIR"/lib/pkg/prt-get.aliases"; +const string PkgDB::ALIAS_STORE = SYSCONFDIR"/prt-get.aliases"; /*! Create a PkgDB object |