summaryrefslogtreecommitdiffhomepage
path: root/vars/ruby.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-11-20 21:45:21 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2017-11-21 00:51:43 +0000
commitc27beab66023847435fb88cd5cc75916dca37057 (patch)
treec43c23133f5b837925785d5501aa4cff14980415 /vars/ruby.vars
parentd01c0269b8e5e467f82cd28392579c4c43fe63bc (diff)
downloadmidipix_build-c27beab66023847435fb88cd5cc75916dca37057.tar.bz2
midipix_build-c27beab66023847435fb88cd5cc75916dca37057.tar.xz
Refactors build steps along the sequence {setup,fetch,configure,build,install}.
subr/mode_check_updates.subr: seperated into check_updates.sh. subr/post_{copy_etc,sha256sums,tarballs}.subr: absorbed into `dist' target.
Diffstat (limited to 'vars/ruby.vars')
-rw-r--r--vars/ruby.vars6
1 files changed, 3 insertions, 3 deletions
diff --git a/vars/ruby.vars b/vars/ruby.vars
index 649f619a..55ba881d 100644
--- a/vars/ruby.vars
+++ b/vars/ruby.vars
@@ -2,15 +2,15 @@
# set -o errexit -o noglob are assumed.
#
-pkg_ruby_install_pre() {
+pkg_ruby_install_make_pre() {
if [ ! -e rbconfig.rb.orig ]; then
sed -i.orig '/^\s*CONFIG\["prefix"\]\s*=.*$/s/=.*$/= ""/' \
rbconfig.rb;
fi;
};
-pkg_ruby_host_install_pre() {
- pkg_ruby_install_pre;
+pkg_ruby_host_install_make_pre() {
+ pkg_ruby_install_make_pre;
};
# vim:filetype=sh