Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
自動車メーカーでは
コマンド実行結果をMakefile変数に代入したい
configure.acでそれを行う方法は?
の出力をecho foo変数var (つまりvar=foo) に割り当てるには、これを に入れますconfigure.ac。
echo foo
var
var=foo
configure.ac
AC_SUBST([var],[$( echo foo )]) # use backticks for maximal portability
または、var を割り当ててから呼び出しAC_SUBST([var]) ます (2 番目の引数なし)。
AC_SUBST([var])