summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-03 15:14:06 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-03 15:14:06 (GMT)
commit4d3317030e121dbdfbfc9cdfd0a6d85bd78498a7 (patch)
tree8d198abefce708e69dfedd0e3de2e539cc597df4
parentc2452026b8dbb997c8f6d10e662cb97ddf6b07e2 (diff)
downloadlinhes_dev-4d3317030e121dbdfbfc9cdfd0a6d85bd78498a7.zip
mp: revert some msg to echos so the greps will work and repo detection works.
-rwxr-xr-xbuild_tools/bin/mp9
1 files changed, 5 insertions, 4 deletions
diff --git a/build_tools/bin/mp b/build_tools/bin/mp
index 9ff97f9..3b1992c 100755
--- a/build_tools/bin/mp
+++ b/build_tools/bin/mp
@@ -80,20 +80,21 @@ function bump {
function find_repo {
dirname=`dirname $mydir`
- msg $dirname|grep -q "extra"
+
+ echo $dirname|grep -q "extra"
if [ $? = 0 ]
then
REPO=extra${PFIX}
else
REPO=core${PFIX}
fi
- msg $dirname|grep -q "chroot-devel"
+ echo $dirname|grep -q "chroot-devel"
if [ $? = 0 ]
then
REPO=chroot-devel
fi
- msg $dirname|grep -q "mv-core"
+ echo $dirname|grep -q "mv-core"
if [ $? = 0 ]
then
REPO=mv-core
@@ -108,7 +109,7 @@ function find_repo {
then
mkdir -p $DOCROOT
fi
-
+ msg $REPO
}