mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
The Makedoc.sh script uses the following line to set TMPDIR
export TMPDIR=`mktemp -d ${TMPDIR:-/tmp}/ldt.XXXXXXXXXX`;
and then later in the script:
chmod u+x $TMPDIR/linuxdoc
Since TMPDIR is not set the script will default to /tmp and if /tmp
is set to noexec (which is becoming more common), the chmod call fails.
(From OE-Core rev: 3a8b8812ac1b9a724f11b2011f8ee3416ac3d4df)
Signed-off-by: Konrad Scherer <Konrad.Scherer@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
783 B
BlitzBasic
26 lines
783 B
BlitzBasic
SUMMARY = "Convert LinuxDoc SGML source into other formats"
|
|
HOMEPAGE = "http://packages.debian.org/linuxdoc-tools"
|
|
LICENSE = "GPLv3+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=077ef64ec3ac257fb0d786531cf26931"
|
|
|
|
DEPENDS = "groff-native openjade-native"
|
|
|
|
SRC_URI = "${DEBIAN_MIRROR}/main/l/linuxdoc-tools/linuxdoc-tools_${PV}.orig.tar.gz \
|
|
file://disable_sgml2rtf.patch \
|
|
file://disable_txt_doc.patch \
|
|
file://disable_tex_doc.patch \
|
|
file://disable_dvips_doc.patch"
|
|
|
|
SRC_URI[md5sum] = "1d13d500918a7a145b0edc2f16f61dd1"
|
|
SRC_URI[sha256sum] = "7103facee18a2ea97186ca459d743d22f7f89ad4b5cd1dfd1c34f83d6bfd4101"
|
|
|
|
inherit autotools-brokensep native
|
|
|
|
do_configure () {
|
|
oe_runconf
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' 'TMPDIR=${T}' install
|
|
}
|