diff options
Diffstat (limited to 'meta/packages/update-alternatives/update-alternatives-dpkg.inc')
-rw-r--r-- | meta/packages/update-alternatives/update-alternatives-dpkg.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/packages/update-alternatives/update-alternatives-dpkg.inc b/meta/packages/update-alternatives/update-alternatives-dpkg.inc new file mode 100644 index 0000000000..e767ed632b --- /dev/null +++ b/meta/packages/update-alternatives/update-alternatives-dpkg.inc | |||
@@ -0,0 +1,20 @@ | |||
1 | LICENSE = "GPL" | ||
2 | SECTION = "base" | ||
3 | MAINTAINER = "Chris Larson <kergoth@handhelds.org>" | ||
4 | SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.gz" | ||
5 | S = "${WORKDIR}/dpkg-${PV}" | ||
6 | PACKAGE_ARCH = "all" | ||
7 | |||
8 | do_patch () { | ||
9 | cat ${S}/scripts/update-alternatives.pl | \ | ||
10 | sed -n -e ' | ||
11 | /^\$admindir=.*staging/{ | ||
12 | x | ||
13 | s/^.*$/$D=$ENV{"D"} || ""\;/; | ||
14 | p; | ||
15 | x; | ||
16 | s,^\$admindir=.*staging.*$,$admindir="$D${localstatedir}/dpkg"\;,; | ||
17 | }; | ||
18 | s,^\$altdir=.*$,$altdir="$D${sysconfdir}/alternatives"\;,; | ||
19 | p;' > ${S}/scripts/update-alternatives | ||
20 | } | ||