Skip to content

Commit 2fab02c

Browse files
committed
Fix wheelhouse directory name.
1 parent d8ff959 commit 2fab02c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ $(addprefix wheel_,$(filter-out %_x86_64, $(filter-out %_i686, $(MANYLINUX_IMAGE
4545

4646
wheel_%: dist/$(PACKAGENAME)-$(VERSION).tar.gz
4747
echo "Building wheels for $(PACKAGENAME) $(VERSION)"
48-
mkdir -p wheelhouse$(subst wheel_,,$@)
48+
mkdir -p wheelhouse_$(subst wheel_,,$@)
4949
time docker run --rm -t \
5050
-v $(shell pwd):/io \
5151
-e CFLAGS="-O3 -g1 -mtune=generic -pipe -fPIC" \
5252
-e LDFLAGS="$(LDFLAGS) -fPIC" \
53-
-e WHEELHOUSE=wheelhouse$(subst wheel_,,$@) \
53+
-e WHEELHOUSE=wheelhouse_$(subst wheel_,,$@) \
5454
quay.io/pypa/$(subst wheel_,,$@) \
5555
bash -c '\
5656
rm -fr $(PACKAGENAME)-$(VERSION)/; \

0 commit comments

Comments
 (0)