This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "uClibc-ng - small C library for embedded systems".
The branch, 1.0 has been updated
via 90c76c06c09a83d76c3fb00768bad09fe747c3c3 (commit)
from 1e28bdaabba3cdc26df028d70f9e15e055e75587 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 90c76c06c09a83d76c3fb00768bad09fe747c3c3
Author: Waldemar Brodkorb <wbx(a)uclibc-ng.org>
Date: Wed Dec 9 19:26:33 2015 +0100
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.
-----------------------------------------------------------------------
Summary of changes:
test/math/Makefile.in | 2 +-
test/math/gen-libm-test.pl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/math/Makefile.in b/test/math/Makefile.in
index 9fbd58a..3874001 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
diff --git a/test/math/gen-libm-test.pl b/test/math/gen-libm-test.pl
index 0bb2b46..118f352 100755
--- a/test/math/gen-libm-test.pl
+++ b/test/math/gen-libm-test.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Copyright (C) 1999 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# Contributed by Andreas Jaeger <aj(a)suse.de>de>, 1999.
hooks/post-receive
--
uClibc-ng - small C library for embedded systems