File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ install:
92
92
fi
93
93
- ./bin/install-icu
94
94
- export PKG_CONFIG_PATH=$ICU_INSTALL_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
95
+ - touch custom_configure_options
95
96
- ./bin/install-libzip
96
97
- ./bin/install-libsodium
97
98
- ./bin/install-password-argon2
@@ -101,6 +102,7 @@ install:
101
102
else
102
103
cp default_configure_options.$RELEASE $HOME/.php-build/share/php-build/default_configure_options
103
104
fi
105
+ - cat custom_configure_options >> $HOME/.php-build/share/php-build/default_configure_options
104
106
- | # disable xdebug on master
105
107
if [[ $VERSION = master && $RELEASE != xenial ]]; then
106
108
sed -i -e '/install_xdebug_master/d' $HOME/.php-build/share/php-build/definitions/$VERSION
Original file line number Diff line number Diff line change 22
22
23
23
# PHP >= 7.4 exclusively uses pkg-config for ICU
24
24
if [[ $VERSION =~ ^5 || $VERSION =~ 7\. [0123] ]]; then
25
- echo " --with-icu-dir=$ICU_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /default_configure_options. ${RELEASE}
25
+ echo " --with-icu-dir=$ICU_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /custom_configure_options
26
26
fi
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ make check
20
20
make install
21
21
popd
22
22
23
- # add the option in default_configure_options
24
- echo " --with-sodium=$LIBSODIUM_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /default_configure_options. ${RELEASE}
23
+ # add the option in custom_configure_options
24
+ echo " --with-sodium=$LIBSODIUM_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /custom_configure_options
Original file line number Diff line number Diff line change 36
36
make install
37
37
popd
38
38
39
- # add the option in default_configure_options
40
- echo " --with-libzip=$LIBZIP_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /default_configure_options. ${RELEASE}
39
+ # add the option in custom_configure_options
40
+ echo " --with-libzip=$LIBZIP_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /custom_configure_options
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ make test
19
19
make install PREFIX=$LIBARGON2_INSTALL_DIR
20
20
popd
21
21
22
- # add the option in default_configure_options
23
- echo " --with-password-argon2=$LIBARGON2_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /default_configure_options. ${RELEASE}
22
+ # add the option in custom_configure_options
23
+ echo " --with-password-argon2=$LIBARGON2_INSTALL_DIR " >> $TRAVIS_BUILD_DIR /custom_configure_options
You can’t perform that action at this time.
0 commit comments