summaryrefslogtreecommitdiffhomepage
path: root/009.pkgconf_host.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-07-10 16:02:14 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-07-10 16:02:14 +0000
commit806c982e1dd9ef30ae17cd179476802015d1cd00 (patch)
tree5fde084b57296070a8cea480057ca9e616a41f7e /009.pkgconf_host.vars
parent3a1ff2d9b43ed5a0bf0c0a984f0559a486da796d (diff)
downloadmidipix_build-806c982e1dd9ef30ae17cd179476802015d1cd00.tar.bz2
midipix_build-806c982e1dd9ef30ae17cd179476802015d1cd00.tar.xz
- Check if build script exists and if build level is valid w/ -r.
- Removes build levels {configure,build,install}{1,2}.
Diffstat (limited to '009.pkgconf_host.vars')
-rw-r--r--009.pkgconf_host.vars19
1 files changed, 0 insertions, 19 deletions
diff --git a/009.pkgconf_host.vars b/009.pkgconf_host.vars
deleted file mode 100644
index 3443633b..00000000
--- a/009.pkgconf_host.vars
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# . ./build.vars and set -o errexit -o noglob are assumed.
-#
-
-pkg_pkgconf_host_install_post() {
- if [ -e ${PREFIX}/bin/${TARGET}-pkg-config ]; then
- rm -f -- ${PREFIX}/bin/${TARGET}-pkg-config;
- fi;
- cat > ${PREFIX}/bin/${TARGET}-pkg-config <<EOF
-#!/bin/sh
-if [ -z "\${PREFIX_NATIVE}" ]; then
- PREFIX_NATIVE=${PREFIX_NATIVE};
-fi;
-"\$(dirname "\${0}")"/pkgconf --define-variable=prefix=\${PREFIX_NATIVE%/}/ "\$@";
-EOF
- chmod +x ${PREFIX}/bin/${TARGET}-pkg-config;
-};
-
-# vim:filetype=sh