We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b98d878 commit e96b301Copy full SHA for e96b301
toolchains/common/functions.sh
@@ -1,3 +1,5 @@
1
+export PATH=/usr/bin:/bin:/usr/sbin:/sbin
2
+
3
__do_make_bdir () {
4
# If build dir hasn't been cleant with do_clean_dir before this step will fail
5
# It's intended to keep images size at minimum
@@ -75,7 +77,7 @@ __do_http_fetch () {
75
77
rm -r "$1"*/
76
78
fi
79
fname=$(basename $2)
- wget --no-hsts --progress=dot "$2" -O "$fname"
80
+ /opt/macports-tff/bin/curl -L -o "$fname" "$2"
81
82
__do_verify "$fname" "$4"
83
@@ -102,7 +104,7 @@ __do_configure () {
102
104
__do_cmake () {
103
105
mkdir -p build
106
cd build
- cmake -DCMAKE_INSTALL_PREFIX=$PREFIX \
107
+ /opt/macports-tff/bin/cmake -DCMAKE_INSTALL_PREFIX=$PREFIX \
108
-DBUILD_SHARED_LIBS=no "$@" ..
109
}
110
0 commit comments