mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
198d25ced9
Instead, change grep to egrep in configure so that it does what was intended. Ok'd by: smace & ache
12 lines
574 B
Plaintext
12 lines
574 B
Plaintext
--- unix/configure.orig Tue Sep 22 14:33:00 1998
|
|
+++ unix/configure Tue Sep 22 14:33:18 1998
|
|
@@ -49,7 +49,7 @@
|
|
echo "int foo() { return 0;}" > conftest.c
|
|
$CC -c conftest.c >/dev/null 2>/dev/null
|
|
echo Check if compiler generates underlines
|
|
- nm conftest.o | grep "(^|[^_])foo" >/dev/null 2>/dev/null
|
|
+ nm conftest.o | egrep "(^|[^_])foo" >/dev/null 2>/dev/null
|
|
[ $? -eq 0 ] && CPP="${CPP} -DNO_UNDERLINE"
|
|
if eval "$CPP crc_i386.S > _crc_i386.s 2>/dev/null"; then
|
|
if eval "$CC -c _crc_i386.s >/dev/null 2>/dev/null" && [ -f _crc_i386.o ]
|