Merge pull request #263542 from tu-maurice/upstream-fix/opkg

opkg: Fix localstatedir and sysconfdir
This commit is contained in:
Felix Bühler 2023-10-28 17:22:24 +02:00 committed by GitHub
commit 33aeaa4c20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,6 +38,11 @@ stdenv.mkDerivation rec {
libxml2
];
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
];
meta = with lib; {
description = "A lightweight package management system based upon ipkg";
homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";