forked from kiss-community/repo
16 lines
215 B
Bash
Executable File
16 lines
215 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Fix upstream build bug.
|
|
mkdir -p deps/v8/test/torque
|
|
cp test-torque.tq deps/v8/test/torque
|
|
|
|
export PYTHON=python2
|
|
|
|
chmod +x configure
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|