diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-10-16 22:21:38 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-10-16 22:28:51 +0200 |
commit | 883e194e455d012fa4b32eea027384cd64770c24 (patch) | |
tree | 93605b05cf83d54715139c8349006f49d22ad4f6 /dev-util/abi-compliance-checker | |
parent | net-proxy/haproxy: Version bump to 1.6.0. Also fixes bug 555864 (diff) | |
download | gentoo-883e194e455d012fa4b32eea027384cd64770c24.tar.gz gentoo-883e194e455d012fa4b32eea027384cd64770c24.tar.bz2 gentoo-883e194e455d012fa4b32eea027384cd64770c24.zip |
dev-util/abi-compliance-checker: ignore broken Makefile
Ignore the Makefile that has been introduced upstream. It only calls
'install' with hardcoded '/usr' prefix, and does that as a default rule.
Therefore, we need to wipe out src_compile() to make sure it doesn't try
to install to the live system.
Diffstat (limited to 'dev-util/abi-compliance-checker')
-rw-r--r-- | dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild b/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild index 535929462e8b..9c71e65e6d93 100644 --- a/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild +++ b/dev-util/abi-compliance-checker/abi-compliance-checker-9999.ebuild @@ -25,6 +25,10 @@ SRC_URI= KEYWORDS= #endif +src_compile() { + : +} + src_install() { mkdir -p "${D}"/usr || die perl Makefile.pl --install --prefix=/usr --destdir="${D}" || die |