mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
333 B
Bash
17 lines
333 B
Bash
|
# Usage: ./update.sh <double-conversion-src-directory>
|
||
|
#
|
||
|
# Copies the needed files from a directory containing the original
|
||
|
# double-conversion source that we need.
|
||
|
|
||
|
cp $1/LICENSE ./
|
||
|
cp $1/README ./
|
||
|
|
||
|
# Includes
|
||
|
cp $1/src/*.h ./
|
||
|
|
||
|
# Source
|
||
|
cp $1/src/*.cc ./
|
||
|
|
||
|
patch -p3 < add-mfbt-api-markers.patch
|
||
|
patch -p3 < useStandardInteger.patch
|