Skip to content

Commit

Permalink
Don't unnecessarily depend on bash
Browse files Browse the repository at this point in the history
  • Loading branch information
dhewg committed Jul 6, 2011
1 parent ac7c6f1 commit 0e712bd
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion scripts/001-binutils-2.21.1-PPU.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# binutils-2.21.1-PPU.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d binutils-2.21.1 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/002-gcc-4.5.2-PPU-stage1.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# gcc-4.5.2-PPU-stage1.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d gcc-4.5.2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/003-newlib-1.19.0-PPU.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# newlib-1.19.0-PPU.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d newlib-1.19.0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/004-gcc-4.5.2-PPU-stage2.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# gcc-4.5.2-PPU-stage2.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d gcc-4.5.2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/005-gdb-7.2-PPU.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# gdb-7.2-PPU.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d gdb-7.2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/006-symlinks-PPU.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# symlinks-PPU.sh by Dan Peori (dan.peori@oopo.net)

## Enter the PPU directory.
Expand Down
2 changes: 1 addition & 1 deletion scripts/007-binutils-2.21.1-SPU.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# binutils-2.21.1-SPU.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d binutils-2.21.1 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/008-gcc-4.5.2-SPU-stage1.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# gcc-4.5.2-SPU-stage1.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d gcc-4.5.2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/009-newlib-1.19.0-SPU.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# newlib-1.19.0-SPU.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d newlib-1.19.0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/010-gcc-4.5.2-SPU-stage2.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# gcc-4.5.2-SPU-stage2.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d gcc-4.5.2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/011-gdb-7.2-SPU.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# gdb-7.2-SPU.sh by Dan Peori (dan.peori@oopo.net)

if [ ! -d gdb-7.2 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/012-psl1ght.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# psl1ght.sh by Dan Peori (dan.peori@oopo.net)

## Download the source code.
Expand Down
2 changes: 1 addition & 1 deletion scripts/013-ps3libraries.sh
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/sh -e
# ps3libraries.sh by Dan Peori (dan.peori@oopo.net)

## Download the source code.
Expand Down
2 changes: 1 addition & 1 deletion toolchain-sudo.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
# toolchain-sudo.sh by Dan Peori (dan.peori@oopo.net)

## Enter the ps3toolchain directory.
Expand Down
2 changes: 1 addition & 1 deletion toolchain.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
# toolchain.sh by Dan Peori (dan.peori@oopo.net)

## Enter the ps3toolchain directory.
Expand Down

0 comments on commit 0e712bd

Please sign in to comment.