Skip to content

Commit cdb4542

Browse files
Fixed package name for generic (#168)
1 parent c09afa5 commit cdb4542

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,11 @@ done
262262
# Remove CMake configs of boost
263263
rm -rf $install_dir/lib/cmake/[Bb]oost*
264264

265-
march=${isa:-$(uname -m)}
265+
if [[ $isa == "generic" ]]; then
266+
march=$(uname -m)
267+
else
268+
march=$isa
269+
fi
266270

267271
cat > $install_dir/version-info <<EOF
268272
Package : Nebula Third Party

0 commit comments

Comments
 (0)