Skip to content

Commit fab1f4a

Browse files
committed
removing quotes from meson setup options
1 parent c1c6b37 commit fab1f4a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ci/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ meson subprojects download assimp
2424
echo " > Applying patch to version 0.8.0" | tee -a $setup_log
2525
meson subprojects update yaml-cpp --reset
2626
echo
27-
echo " > Running meson setup build $meson_option" | tee -a $setup_log
28-
meson setup build "$=meson_option" >> $setup_log
27+
echo " > Running meson setup build $=meson_option" | tee -a $setup_log
28+
meson setup build $=meson_option >> $setup_log
2929
if [ $? -ne 0 ]; then
3030
echo " > Meson Configure failed. Log: "
3131
cat $setup_log

meson/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ geant4_pc_path = gemc_prefix / 'lib/pkgconfig'
6262
geant4_pc = geant4_pc_path / 'geant4.pc'
6363
g4_pkgconfig_script = meson.project_source_root() / 'meson/g4_pkgconfig.py'
6464
if not fs.exists(geant4_pc)
65-
message('geant4.pc not found in ' + geant4_pc + ', running install script to install it in ' + gemc_prefix)
66-
run_command(g4_pkgconfig_script,gemc_prefix, check : true)
65+
message('geant4.pc not found in ' + geant4_pc + ', running install script to install it in ' + gemc_prefix )
66+
run_command(g4_pkgconfig_script, gemc_prefix, check : true)
6767
endif
6868
geant4_dep = dependency('geant4', version : '>=11.3.2')
6969

0 commit comments

Comments
 (0)