Skip to content

Commit

Permalink
fixup! Fix various issues identified by alidistlint
Browse files Browse the repository at this point in the history
  • Loading branch information
olantwin committed Feb 18, 2025
1 parent eb545f0 commit 6417927
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion genie.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
LD_LIBRARY_PATH: "$LD_LIBRARY_PATH:$GENIE_ROOT/genie/lib"
ROOT_INCLUDE_PATH: "$ROOT_INCLUDE_PATH:$GENIE_ROOT/genie/inc:$GENIE_ROOT/genie/src"
---
#!/bin/bash -ex
#!/bin/bash -e
export GENIE="$BUILDDIR"

rsync -a $SOURCEDIR/* $BUILDDIR
Expand Down
7 changes: 4 additions & 3 deletions xercesc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ env:
XERCESCROOT: "$XERCESC_ROOT"
---
#!/bin/sh
cd $SOURCEDIR
autoreconf -i
cd -
(
cd $SOURCEDIR || exit 1

Check notice on line 13 in xercesc.sh

View workflow job for this annotation

GitHub Actions / alidistlint

Double quote to prevent globbing and word splitting. [SC2086]
autoreconf -i
)
echo "command $SOURCEDIR configure --prefix $INSTALLROOT CFLAGS $CFLAGS CXXFLAGS=$CFLAGS"
$SOURCEDIR/configure --prefix=$INSTALLROOT CFLAGS="$CFLAGS" CXXFLAGS="$CFLAGS"
make ${JOBS+-j $JOBS}
Expand Down

0 comments on commit 6417927

Please sign in to comment.