Skip to content

Commit

Permalink
docs: add note about makeFlags quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
LnL7 authored and domenkozar committed Nov 1, 2017
1 parent daf7868 commit 1167fde
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions doc/stdenv.xml
Expand Up @@ -698,8 +698,14 @@ nothing.</para>
<listitem><para>A list of strings passed as additional flags to
<command>make</command>. These flags are also used by the default
install and check phase. For setting make flags specific to the
build phase, use <varname>buildFlags</varname> (see
below).</para></listitem>
build phase, use <varname>buildFlags</varname> (see below).

<programlisting>
makeFlags = [ "PREFIX=$(out)" ];
</programlisting>

<note><para>The flags are quoted in bash, but environment variables can
be specified by using the make syntax.</para></note></para></listitem>
</varlistentry>

<varlistentry>
Expand Down

0 comments on commit 1167fde

Please sign in to comment.