On Tue, Oct 16, David Champion wrote:
> +conststrings.c: txt2c.py
> + ( \
> + $${CC-cc} --version || \
> + $${CC-cc} -v || \
> + $${CC-cc} -V || \
> + echo "unknown compiler"; \
> + ) 2>/dev/null | python txt2c.py cc_version >conststrings.c
> + grep ac_cs_config= config.status | \
> + cut -d= -f2- | \
> + sed -e 's/^"//' -e 's/"$$//' | python txt2c.py configure_options
> >>conststrings.c
Make sure to work with temporary files before creating the final
dependency, otherwise make -j N will fail.
Olaf