mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 06:32:12 +02:00
This reverts commit bc31351f69.
This change is already applied against configure, not configure.ac. This change forces a
reautoconf of quilt-native before we've built autoconf and if "git-desc" isn't present it
can result in further problems. The simplest solution is to revert this change.
29 lines
881 B
PHP
29 lines
881 B
PHP
DESCRIPTION = "Tool to work with series of patches."
|
|
HOMEPAGE = "http://savannah.nongnu.org/projects/quilt/"
|
|
SECTION = "devel"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
SRC_URI = "http://download.savannah.gnu.org/releases/quilt/quilt-${PV}.tar.gz \
|
|
file://install.patch \
|
|
file://gnu_patch_test_fix.patch"
|
|
|
|
inherit autotools
|
|
|
|
PACKAGES += "guards guards-doc"
|
|
FILES_${PN} = "${sysconfdir} ${datadir}/quilt \
|
|
${bindir}/quilt ${libdir}/quilt"
|
|
FILES_guards = "${bindir}/guards"
|
|
FILES_${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${P}"
|
|
FILES_guards-doc = "${mandir}/man1/guards.1"
|
|
|
|
# quilt ignores DESTDIR
|
|
do_install () {
|
|
oe_runmake 'BUILD_ROOT=${D}' install
|
|
if [ "${BUILD_ARCH}" == "${HOST_ARCH}" ]; then
|
|
# Dummy quiltrc file for patch.bbclass
|
|
install -d ${D}${bindir}/
|
|
touch ${D}${bindir}/quiltrc
|
|
fi
|
|
}
|