Skip to content

Commit dadeb05

Browse files
committed
Export SED [skip ci]
1 parent bb6d98f commit dadeb05

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

scripts/build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,16 @@ build_php() {
7373
ICU_VERSION="$(dpkg -s libicu-dev | sed -ne 's/^Version: \([0-9]\+\).*/\1/p')"
7474
dpkg --compare-versions $ICU_VERSION ge 75 && ICU_CXXFLAGS=-std=c++17 || ICU_CXXFLAGS=-std=c++11
7575

76+
SED=$(command -v sed)
77+
7678
export CFLAGS
7779
export CPPFLAGS
7880
export CXXFLAGS
7981
export LDFLAGS
8082
export EXTRA_CFLAGS
8183
export DEB_HOST_MULTIARCH
8284
export ICU_CXXFLAGS
85+
export SED
8386

8487
# Export inputs
8588
export INSTALL_ROOT

scripts/install-extension.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ tar xf "/tmp/$extension.tar.gz" -C /tmp
3030
tag=${tag#v}
3131
cd /tmp/"$(basename "$repo")"-"${tag/\//-}" || exit 1
3232
fi
33+
export SED=$(command -v sed)
3334
patch_"${extension}" 2>/dev/null || true
3435
phpize
3536
./configure "--with-php-config=/usr/bin/php-config" "${params[@]}"

0 commit comments

Comments
 (0)