Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Mar 24, 2010
2 parents ccdb71a + 236fb25 commit 1966c1c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
12 changes: 7 additions & 5 deletions addons/parrot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
alias pcn="parrot-nqp Configure.nqp"
alias pcs="parrot setup.pir build"

# Where the Parrot repo is, shortcut.
PARROTSVN="https://svn.parrot.org/parrot"

# Setup some arguments that are always used to configure Parrot
WKPARROTSTDARGS="--no-line-directives"
# --no-line-directives seems to cause some problems now
WKPARROTSTDARGS=""

# Var to simplify parrot svn operations
PARROTSVN="https://svn.parrot.org/parrot"

# Parrot configuration. If the first argument is the name of a supported compiler,
# use that compiler. Otherwise all arguments are passed to Configure.pl
Expand Down Expand Up @@ -69,7 +70,7 @@ function pc {

# If we have flex and bison, set that up. No sense in not using them
local WKPARROTMAINTAINER=""
__find_program flex bison && WKPARROTMAINTAINER="--maintainer"
#__find_program flex bison && WKPARROTMAINTAINER="--maintainer"

if [ -e "Configure.pl" ]; then
echo "Configuring with: '$WKPARROTMAINTAINER $WKCOMMANDLINE $WKPARROTSTDARGS $*'"
Expand Down Expand Up @@ -108,6 +109,7 @@ function parrot-smoke {
# Function to checkout parrot trunk or a particular branch.
function parrot-get {
local PARROTFOLDER=${1:-"parrot"}
# TODO: Should have a way to get the latest RELEASE tag.
if [ ! -e $WKPROJECTS/$PARROTFOLDER ]; then
if [ $PARROTFOLDER == "parrot" ]; then
svn co $PARROTSVN/trunk $WKPROJECTS/parrot
Expand Down
4 changes: 4 additions & 0 deletions addons/projects.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
# Move to the projects root directory
alias projects="cd $WKPROJECTS && PS1='\n<projects> ' && ls --color=always"

function cdl {
cd $1 && ls
}

# Update the prompt used when we change branch/version
function __update_version {
local WKPGVERSION=$(perl $WKPROJECTS/utils/get_version.pl)
Expand Down
4 changes: 3 additions & 1 deletion addons/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ function global_setup {
exit
}


function compilers {
echo "no"
}

0 comments on commit 1966c1c

Please sign in to comment.