GNU Make: Difference between revisions
No edit summary |
|||
| Line 25: | Line 25: | ||
* Arguments to the shell can be specified via <tt>.SHELLFLAGS</tt> | * Arguments to the shell can be specified via <tt>.SHELLFLAGS</tt> | ||
** By default, it's <tt>-c</tt>, or <tt>-ec</tt> in POSIX mode | ** By default, it's <tt>-c</tt>, or <tt>-ec</tt> in POSIX mode | ||
* Remember that errors in the body of a shell loop don't set the overall return value!< | * Remember that errors in the body of a shell loop don't set the overall return value!<pre> | ||
target: | target: | ||
while true ; do false ; done</pre>This recipe cannot be successfully completed! | |||