Skip to content

Commit 9958cc4

Browse files
committed
Updated my name and contact information.
1 parent 7c7371a commit 9958cc4

23 files changed

+23
-22
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build

depends/check-autoconf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-autoconf.sh by Dan Peori ([email protected])
2+
# check-autoconf.sh by Naomi Peori ([email protected])
33

44
## Check for autoconf.
55
autoconf --version 1> /dev/null || { echo "ERROR: Install autoconf before continuing."; exit 1; }

depends/check-automake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-automake.sh by Dan Peori ([email protected])
2+
# check-automake.sh by Naomi Peori ([email protected])
33

44
## Check for automake.
55
automake --version 1> /dev/null || { echo "ERROR: Install automake before continuing."; exit 1; }

depends/check-libtool.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-libtool.sh by Dan Peori ([email protected])
2+
# check-libtool.sh by Naomi Peori ([email protected])
33

44
## Check for libtool.
55
{ libtool --version || libtool -V; } 1> /dev/null || { echo "ERROR: Install libtool before continuing."; exit 1; }

depends/check-make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-make.sh by Dan Peori ([email protected])
2+
# check-make.sh by Naomi Peori ([email protected])
33

44
## Check for make.
55
which ${MAKE:-make} 1> /dev/null || { echo "ERROR: Install make before continuing."; exit 1; }
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-pkg-config.sh by Dan Peori ([email protected])
2+
# check-pkg-config.sh by Naomi Peori ([email protected])
33

44
## Check for pkg-config.
55
pkg-config --version 1> /dev/null || { echo "ERROR: Install pkg-config before continuing."; exit 1; }

depends/check-ps3toolchain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-ps3toolchain.sh by Dan Peori ([email protected])
2+
# check-ps3toolchain.sh by Naomi Peori ([email protected])
33

44
## Check for ps3-gcc.
55
ppu-gcc --version 1> /dev/null || { echo "ERROR: Install the ps3toolchain before continuing."; exit 1; }

depends/check-psl1ght.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-psl1ght.sh by Dan Peori ([email protected])
2+
# check-psl1ght.sh by Naomi Peori ([email protected])
33

44
## Check if $PSL1GHT is set.
55
if test ! $PSL1GHT; then { echo "ERROR: Set \$PSL1GHT before continuing."; exit 1; } fi

depends/check-wget.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# check-wget.sh by Dan Peori ([email protected])
2+
# check-wget.sh by Naomi Peori ([email protected])
33

44
## Check for wget.
55
wget -V 1> /dev/null || { echo "ERROR: Install wget before continuing."; exit 1; }

libraries-sudo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# libraries-sudo.sh by Dan Peori ([email protected])
2+
# libraries-sudo.sh by Naomi Peori ([email protected])
33

44
## Enter the ps3libraries directory.
55
cd "`dirname $0`" || { echo "ERROR: Could not enter the ps3libraries directory."; exit 1; }

0 commit comments

Comments
 (0)