mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-18 22:32:28 +01:00
add `dpkg` to makedepends, as `dpkg-architecture` requires the `cputable` file that it contains.
13 lines
289 B
Diff
13 lines
289 B
Diff
--- a/cmdline/apt-internal-solver.cc
|
|
+++ b/cmdline/apt-internal-solver.cc
|
|
@@ -38,6 +38,9 @@
|
|
#include <unistd.h>
|
|
|
|
#include <apti18n.h>
|
|
+
|
|
+#define basename(name) (strrchr((name),'/') ? strrchr((name),'/')+1 : (name))
|
|
+
|
|
/*}}}*/
|
|
|
|
static bool ShowHelp(CommandLine &) /*{{{*/
|