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 1531315 commit 882296bCopy full SHA for 882296b
src/hst_autocompile.sh
@@ -254,7 +254,11 @@ if [ "$dontinstalldeps" != 'true' ]; then
254
255
# Fix for Debian PHP Envroiment
256
if [ ! -e /usr/local/include/curl ]; then
257
- ln -s /usr/include/x86_64-linux-gnu/curl /usr/local/include/curl
+ if [ $BUILD_ARCH == "amd64" ]; then
258
+ ln -s /usr/include/x86_64-linux-gnu/curl /usr/local/include/curl
259
+ else
260
+ echo "No x86_64 working"
261
+ fi
262
fi
263
264
0 commit comments