Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit b2357a4

Browse files
committed
Fix calling wrap_wheel_builder
1 parent 361b436 commit b2357a4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

config.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@
44
if [ $(uname) == "Linux" ]; then IS_LINUX=1; fi
55
source gfortran-install/gfortran_utils.sh
66

7+
function _build_wheel {
8+
build_libs
9+
build_bdist_wheel $@
10+
}
11+
712
function build_wheel {
813
if [ -n "$IS_OSX" ]; then
914
install_gfortran
1015
fi
1116
echo gcc --version
1217
echo `gcc --version`
1318
# Fix version error for development wheels by using bdist_wheel
14-
wrap_wheel_builder build_libs && build_bdist_wheel $@
19+
wrap_wheel_builder _build_wheel $@
1520
}
1621

1722
function build_libs {

0 commit comments

Comments
 (0)