File tree Expand file tree Collapse file tree 4 files changed +7
-39
lines changed Expand file tree Collapse file tree 4 files changed +7
-39
lines changed Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ pyprefix=$(python-config --prefix)
9
9
[ $? -eq 0 ] || { echo " ERROR: Install python-dev before continuing." ; exit 1; }
10
10
11
11
# # Check for python header files
12
- ( ls -1d " ${pyprefix} " /include/python2 .* /Python.h || ls -1d /opt/local/include/python2 .* /Python.h ) 1> /dev/null 2>&1 || [ -f " $PYINSTALLDIR /include/Python.h" ] || { echo " ERROR: Install python-dev before continuing." ; exit 1; }
12
+ ( ls -1d " ${pyprefix} " /include/python[23] .* /Python.h || ls -1d /opt/local/include/python[23] .* /Python.h ) 1> /dev/null 2>&1 || [ -f " $PYINSTALLDIR /include/Python.h" ] || { echo " ERROR: Install python-dev before continuing." ; exit 1; }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh -e
2
2
# gdb-PPU.sh by Naomi Peori (naomi@peori.ca)
3
3
4
- GDB=" gdb-7.5.1 "
4
+ GDB=" gdb-11.2 "
5
5
6
6
if [ ! -d ${GDB} ]; then
7
7
8
8
# # Download the source code.
9
- if [ ! -f ${GDB} .tar.bz2 ]; then wget --continue https://ftp.gnu.org/gnu/gdb/${GDB} .tar.bz2 ; fi
9
+ if [ ! -f ${GDB} .tar.xz ]; then wget --continue https://ftp.gnu.org/gnu/gdb/${GDB} .tar.xz ; fi
10
10
11
11
# # Download an up-to-date config.guess and config.sub
12
12
if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi
13
13
if [ ! -f config.sub ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.sub; fi
14
14
15
15
# # Unpack the source code.
16
- tar xfvj ${GDB} .tar.bz2
17
-
18
- # # Patch the source code.
19
- cat ../patches/${GDB} -PS3.patch | patch -p1 -d ${GDB}
16
+ tar xfvJ ${GDB} .tar.xz
20
17
21
18
# # Replace config.guess and config.sub
22
19
cp config.guess config.sub ${GDB}
Original file line number Diff line number Diff line change 1
1
#! /bin/sh -e
2
2
# gdb-SPU.sh by Naomi Peori (naomi@peori.ca)
3
3
4
- GDB=" gdb-7.5.1 "
4
+ GDB=" gdb-11.2 "
5
5
6
6
if [ ! -d ${GDB} ]; then
7
7
8
8
# # Download the source code.
9
- if [ ! -f ${GDB} .tar.bz2 ]; then wget --continue https://ftp.gnu.org/gnu/gdb/${GDB} .tar.bz2 ; fi
9
+ if [ ! -f ${GDB} .tar.xz ]; then wget --continue https://ftp.gnu.org/gnu/gdb/${GDB} .tar.xz ; fi
10
10
11
11
# # Download an up-to-date config.guess and config.sub
12
12
if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi
13
13
if [ ! -f config.sub ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.sub; fi
14
14
15
15
# # Unpack the source code.
16
- tar xfvj ${GDB} .tar.bz2
17
-
18
- # # Patch the source code.
19
- cat ../patches/${GDB} -PS3.patch | patch -p1 -d ${GDB}
16
+ tar xfvJ ${GDB} .tar.xz
20
17
21
18
# # Replace config.guess and config.sub
22
19
cp config.guess config.sub ${GDB}
You can’t perform that action at this time.
0 commit comments