aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-08 09:51:02 +0000
committerChris Larson <clarson@kergoth.com>2004-12-08 09:51:02 +0000
commit9b67e1bd7adb6427ffe3c655f19a0b39c73af3b3 (patch)
tree60514e19a1c9773be5d7e2910a678d8c203eae41 /contrib
parent8bee675cbbf298a88d12c4ff3bf5c22ba5f09d9d (diff)
downloadbitbake-9b67e1bd7adb6427ffe3c655f19a0b39c73af3b3.tar.gz
oe to bb rename in oedev.sh.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/bbdev.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/bbdev.sh b/contrib/bbdev.sh
index ed0f594a4..33a78531e 100644
--- a/contrib/bbdev.sh
+++ b/contrib/bbdev.sh
@@ -4,9 +4,9 @@
# The author disclaims copyright to the contents of this file and places it in the
# public domain.
-oedev () {
+bbdev () {
local BBDIR PKGDIR BUILDDIR
- if test x"$1" = "x--help"; then echo >&2 "syntax: oedev [oedir [pkgdir [builddir]]]"; return 1; fi
+ if test x"$1" = "x--help"; then echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]"; return 1; fi
if test x"$1" = x; then BBDIR=`pwd`; else BBDIR=$1; fi
if test x"$2" = x; then PKGDIR=`pwd`; else PKGDIR=$2; fi
if test x"$3" = x; then BUILDDIR=`pwd`; else BUILDDIR=$3; fi
@@ -15,7 +15,7 @@ oedev () {
PKGDIR=`readlink -f $PKGDIR`
BUILDDIR=`readlink -f $BUILDDIR`
if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then
- echo >&2 "syntax: oedev [oedir [pkgdir [builddir]]]"
+ echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]"
return 1
fi