Skip to content
Snippets Groups Projects
Commit c1bdb606 authored by Jason Hiser's avatar Jason Hiser
Browse files

set daffy to only build on x64 machines, as it's not even close for 32-bit

Former-commit-id: 101b1642
parent 4356da4f
No related branches found
No related tags found
No related merge requests found
...@@ -137,7 +137,7 @@ scons $SCONSDEBUG || exit ...@@ -137,7 +137,7 @@ scons $SCONSDEBUG || exit
cd $IRDB_TRANSFORMS cd $IRDB_TRANSFORMS
scons $SCONSDEBUG -j 3 || exit scons $SCONSDEBUG -j 3 || exit
if [ -d $DAFFY_HOME ]; then if [[ -d $DAFFY_HOME ]] && [[ $(uname -p) == 'x86_64' ]]; then
cd $DAFFY_HOME cd $DAFFY_HOME
./setup_cfar.sh ./setup_cfar.sh
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment