Skip to content

Commit

Permalink
API updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Sep 9, 2011
1 parent 7ad043b commit 33838ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gcc/shell/cli
Expand Up @@ -2,6 +2,6 @@

if [[ ! "${configure_flags[*]}" =~ *--prefix* ]]
then
configure_flags+=(--prefix "${install_path}")
configure_flags+=( --prefix "${install_path}" )
fi

12 changes: 6 additions & 6 deletions go/shell/functions
Expand Up @@ -2,12 +2,12 @@

go_fetch()
{
paths enter "${source_path}"
if command_exists hg
path enter "${source_path}"
if command exists hg
then
paths remove "${source_path}/${package_dir}"
paths create "${source_path}"
paths enter "${source_path}"
path remove "${source_path}/${package_dir}"
path create "${source_path}"
path enter "${source_path}"
#TODO: use fetch_uri !!!
hg clone -u release https://go.googlecode.com/hg/ "${source_path}/${package_dir}"
else
Expand All @@ -18,7 +18,7 @@ go_fetch()
go_build()
{
export GOROOT="${source_path}/${package_dir}"
paths enter "${source_path}/${package_dir}/src"
path enter "${source_path}/${package_dir}/src"
./all.bash
}

Expand Down
4 changes: 2 additions & 2 deletions php/shell/functions
Expand Up @@ -34,8 +34,8 @@ php_postfetch()

for _path in "${source_path}"/${package_dir}/php-trunk*/*
do
mv "$_path"/* "${source_path}/${package_dir}/"
remove_path "$_path"
files move to "${source_path}/${package_dir}/" "$_path"/*
path remove "$_path"
done
(5.4*)
;;
Expand Down

0 comments on commit 33838ab

Please sign in to comment.