aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/beecrypt
AgeCommit message (Expand)Author
2014-11-12beecrypt: add option --with-dev-dspKai Kang
2014-08-28run-ptest: fix bashismRobert Yang
2014-01-10beecrypt: add ptest supportChong Lu
2014-01-02Basic recipe formatting fixesPaul Eggleton
2014-01-02Replace one-line DESCRIPTION with SUMMARYPaul Eggleton
2013-12-20beecrypt: Allow PACKAGECONFIG to be overriddenSaul Wold
2013-11-26beecrypt: Add PACKAGECONFIG for cplusplusRichard Purdie
2013-10-18beecrypt: Add nativesdk in BBCLASSEXTENDDavid Nyström
2012-06-15beecrypt: add patch for build issue on Fedora 17Saul Wold
2012-06-08beecrypt: disable javaJesse Zhang
2011-07-27beecrypt: Fix multilib header conflict - beecrypt/gnu.hMark Hatle
2011-07-01beecrypt: Fix up packaging QA warningsRichard Purdie
2011-05-12recipes: Add Upstream-Status to multiple recipesZhai Edwin
2011-01-06beecrypt: Update to 4.2.1Zhai Edwin
2010-12-09SRC_URI Checksums AdditionalsSaul Wold
2010-11-23beecrypt:Add license checksum and update the GPL to bb fileMei Lei
2010-09-30beeycrypt: added LICENSE fieldSaul Wold
2010-09-01packages: Separate out most of the remaining packages into recipesRichard Purdie
python3-jinja2-v2 OpenEmbedded layers collection contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/oe-init-build-env
blob: cc30a3b1917e1d43acfb29a9b6fdaa38bc02f94e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

# OE Build Enviroment Setup Script
#
# Copyright (C) 2006-2011 Linux Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

#
# Normally this is called as '. ./oe-init-build-env builddir'
#
# This works in most shells (not dash), but not all of them pass arg1 when
# being sourced.   To workaround the shell limitation use "set arg1" prior 
# to sourcing this script.
#
if [ -z "$ZSH_NAME" ] && [ "x$0" = "x./oe-init-build-env" ]; then
   echo "Error: This script needs to be sourced. Please run as '. ./oe-init-build-env'"
else
   if [ -n "$BASH_SOURCE" ]; then
      OEROOT="`dirname $BASH_SOURCE`"
   else
      OEROOT="`pwd`"
   fi
   OEROOT=`readlink -f "$OEROOT"`
   export OEROOT
   . $OEROOT/scripts/oe-buildenv-internal && \
        $OEROOT/scripts/oe-setup-builddir && \
        [ -n "$BUILDDIR" ] && cd $BUILDDIR
   unset OEROOT
   unset BBPATH
fi