1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-10-02 06:21:05 +02:00

LDFLAGS may contain several items and should be passed second

This commit is contained in:
q-posev 2021-08-20 16:31:22 +03:00
parent 9f674b1add
commit 8b22494f2f
2 changed files with 3 additions and 3 deletions

View File

@ -203,7 +203,7 @@ python-test: $(TEST_PY)
python-install: $(pytrexio_py) $(setup_py) $(setup_cfg) python-install: $(pytrexio_py) $(setup_py) $(setup_cfg)
cd python && \ cd python && \
./install_pytrexio.sh $(HDF5_LDFLAGS) $(HDF5_CFLAGS) ./install_pytrexio.sh $(HDF5_CFLAGS) $(HDF5_LDFLAGS)
$(pytrexio_py): $(pytrexio_c) $(pytrexio_py): $(pytrexio_c)
cd tools && ./prepare_python.sh cd tools && ./prepare_python.sh

View File

@ -3,8 +3,8 @@
set -x set -x
set -e set -e
H5_LDFLAGS_LOCAL=$1 H5_CFLAGS_LOCAL=$1
H5_CFLAGS_LOCAL=$2 H5_LDFLAGS_LOCAL=$2
# This script should update the version of the Python package # This script should update the version of the Python package
#source version.py #source version.py