The new syntax seems simple enough that we can think of deprecating all
those short-hand forms.
---
gx86/eclass/virtualx.eclass | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/gx86/eclass/virtualx.eclass b/gx86/eclass/virtualx.eclass
index f576335..9d5045d 100644
--- a/gx86/eclass/virtualx.eclass
+++ b/gx86/eclass/virtualx.eclass
@@ -189,8 +189,10 @@ virtualmake() {
Xmake() {
debug-print-function ${FUNCNAME} "$@"
- eqawarn "you should not execute make directly"
- eqawarn "rather execute Xemake -j1 if you have issues with parallel
make"
+ eqawarn "Using Xmake is considered deprecated."
+ eqawarn "Please use the new, cleaner API instead:"
+ eqawarn " virtualx emake -j1 ..."
+
virtualx emake -j1 "$@"
}
@@ -200,6 +202,10 @@ Xmake() {
Xemake() {
debug-print-function ${FUNCNAME} "$@"
+ eqawarn "Using Xemake is considered deprecated."
+ eqawarn "Please use the new, cleaner API instead:"
+ eqawarn " virtualx emake ..."
+
virtualx emake "$@"
}
@@ -209,5 +215,9 @@ Xemake() {
Xeconf() {
debug-print-function ${FUNCNAME} "$@"
+ eqawarn "Using Xeconf is considered deprecated."
+ eqawarn "Please use the new, cleaner API instead:"
+ eqawarn " virtualx econf ..."
+
virtualx econf "$@"
}
--
1.8.1.2