diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-09 19:26:33 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-09 19:26:33 +0100 |
commit | 90c76c06c09a83d76c3fb00768bad09fe747c3c3 (patch) | |
tree | a842ebaf85593d9c83a9e8e215e1d468072d98a1 /test/math/Makefile.in | |
parent | 1e28bdaabba3cdc26df028d70f9e15e055e75587 (diff) |
do not hardcode path to perl
When cross-compiling on other Unix systems like
FreeBSD 10.x, perl is not in /usr/bin. Use env
to find the perl interpreter and use no fixed path
when executing via make.
Diffstat (limited to 'test/math/Makefile.in')
-rw-r--r-- | test/math/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/math/Makefile.in b/test/math/Makefile.in index 9fbd58ab8..387400151 100644 --- a/test/math/Makefile.in +++ b/test/math/Makefile.in @@ -28,7 +28,7 @@ endif EXTRA_CFLAGS := -fno-builtin EXTRA_LDFLAGS := -lm -PERL := /usr/bin/perl +PERL := perl MDEPS := $(wildcard test-*.c) $(MDEPS): libm-test.c |