Commit 24097828 authored by Jason Madden's avatar Jason Madden

Hmm, GHA must have a version of realpath that requires paths to exist by default.

parent 01f16028
...@@ -366,9 +366,11 @@ jobs: ...@@ -366,9 +366,11 @@ jobs:
GEVENTSETUP_EV_VERIFY: 1 GEVENTSETUP_EV_VERIFY: 1
run: | run: |
# These need to be absolute paths # These need to be absolute paths
export BUILD_LIBS=`realpath $BUILD_LIBS` env | sort
export LDFLAGS=-L$BUILD_LIBS/lib
mkdir -p ~/.libs/lib mkdir -p ~/.libs/lib
export BUILD_LIBS=`realpath -m $BUILD_LIBS`
export LDFLAGS=-L$BUILD_LIBS/lib
env | sort
ls -l deps/libev/ ls -l deps/libev/
autoconf --version autoconf --version
automake --version automake --version
...@@ -405,3 +407,4 @@ jobs: ...@@ -405,3 +407,4 @@ jobs:
# - ccache # - ccache
# * manylinux builds and uploading # * manylinux builds and uploading
# * macos uploading # * macos uploading
# * Use YAML syntax to share snippets, like the old .travis.yml did
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment