Skip to content

Commit

Permalink
Fix configure.ac to only set variables if not provided by user
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzieongit committed Oct 15, 2024
1 parent 7ca14b6 commit 2c1927a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1167,8 +1167,8 @@ case "$enable_xdp" in
AC_ARG_VAR(LLC, [location of LLVM static compiler (only needed for xdp)])
AC_CHECK_PROG(CLANG, clang, clang)
AC_CHECK_PROG(LLC, llc, llc)
CLANG=clang
LLC=llc
test "$CLANG" = "" && CLANG=clang
test "$LLC" = "" && LLC=llc
xdp="xx"
;;
no|*)
Expand Down

0 comments on commit 2c1927a

Please sign in to comment.