From 1baf4318949fb0ef895cabdfb0fc5fb79d39c492 Mon Sep 17 00:00:00 2001 From: Evgeny Ermakov Date: Tue, 18 Jan 2022 23:00:16 +1100 Subject: [PATCH] build-helper/numpy: fix typo --- common/build-helper/numpy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-helper/numpy.sh b/common/build-helper/numpy.sh index 3731885a04..74c6421165 100644 --- a/common/build-helper/numpy.sh +++ b/common/build-helper/numpy.sh @@ -17,7 +17,7 @@ if [ "$CROSS_BUILD" ]; then fi # python3-setuptools finds numpy libs and headers on the host first; - # addding search paths up front allows the target to take priority + # adding search paths up front allows the target to take priority CFLAGS+=" -I${XBPS_CROSS_BASE}/${py3_sitelib}/numpy/core/include" LDFLAGS+=" -L${XBPS_CROSS_BASE}/${py3_sitelib}/numpy/core/lib" LDFLAGS+=" -L${XBPS_CROSS_BASE}/${py3_sitelib}/numpy/random/lib"