From: Simon Ruderich Date: Thu, 20 Jun 2013 21:51:38 +0000 (+0200) Subject: tests/Makefile.am: Fix for BSD's make. X-Git-Tag: 0.1~21 X-Git-Url: https://ruderich.org/simon/gitweb/?p=coloredstderr%2Fcoloredstderr.git;a=commitdiff_plain;h=e3234d6c08a4231c57643423d42f64d0b980c8b3 tests/Makefile.am: Fix for BSD's make. --- diff --git a/tests/Makefile.am b/tests/Makefile.am index bf48191..24f94e0 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -38,5 +38,6 @@ dist_check_DATA = example.h \ example_simple.sh.expected \ example_vfork.expected -# Used by lib.sh. -export EGREP +# Used by lib.sh. Can't use "export EGREP" because it doesn't work with BSD's +# make. +AM_MAKEFLAGS = "EGREP=$(EGREP)"