diff options
author | James Meyer <James.meyer@operamail.com> | 2008-10-03 21:01:12 (GMT) |
---|---|---|
committer | James Meyer <James.meyer@operamail.com> | 2008-10-03 21:01:12 (GMT) |
commit | dae2494e6d2981bc92a53fa1bfb2a5cd77a51fc6 (patch) | |
tree | f56f0ac720308985edc309b30824dbc0e5751407 | |
parent | 618d4ad515a93d1e48934be5846edd71270171ec (diff) | |
download | linhes_dev-dae2494e6d2981bc92a53fa1bfb2a5cd77a51fc6.zip |
add support for chroot-devel repo
-rwxr-xr-x | build_tools/bin/mp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build_tools/bin/mp b/build_tools/bin/mp index c69c622..6c1b683 100755 --- a/build_tools/bin/mp +++ b/build_tools/bin/mp @@ -28,6 +28,11 @@ function find_repo { else REPO=core${PFIX} fi + echo $mydir|grep -q "chroot-devel" + if [ $? = 0 ] + then + REPO=chroot-devel + fi DOCROOT=/data/pkg_repo/$CARCH/$REPO } |