aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2017-12-31 18:05:41 -0500
committerTim Harder <radhermit@gmail.com>2018-03-06 23:44:36 -0500
commit5ae1cf40693d8d007c2fe0f6352fe20831e03f20 (patch)
tree1cad546c04d51fc4cbee1e34e1ea4bf8beeae38b
parentebuild.ebd: add attr for temp install dir correct for all EAPIs (diff)
downloadpkgcore-5ae1cf40693d8d007c2fe0f6352fe20831e03f20.tar.gz
pkgcore-5ae1cf40693d8d007c2fe0f6352fe20831e03f20.tar.bz2
pkgcore-5ae1cf40693d8d007c2fe0f6352fe20831e03f20.zip
eapi/4.lib: move docompress from external helper to internal function
-rw-r--r--ebd/eapi/4.lib5
-rwxr-xr-xebd/helpers/4/docompress5
2 files changed, 5 insertions, 5 deletions
diff --git a/ebd/eapi/4.lib b/ebd/eapi/4.lib
index 426db66e..11a14194 100644
--- a/ebd/eapi/4.lib
+++ b/ebd/eapi/4.lib
@@ -7,6 +7,11 @@ nonfatal() {
PKGCORE_NONFATAL=true "$@"
}
+docompress() {
+ # for the time being, we're ignoring controllable compression
+ return 0
+}
+
__phase_src_install() {
if [[ -f Makefile || -f GNUmakefile || -f makefile ]]; then
emake DESTDIR="${D}" install
diff --git a/ebd/helpers/4/docompress b/ebd/helpers/4/docompress
deleted file mode 100755
index 5fb646d1..00000000
--- a/ebd/helpers/4/docompress
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/env bash
-
-# for the time being, we're ignoring controllable compression.
-
-exit 0