From 002b9b7d1f3ae2d92c7ccec252babbd7fb68f57a Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 12 Aug 2002 14:58:16 +0000 Subject: [PATCH] Do not use 'cc -c input.c -o input'; Sun C rejects this. Instead, use 'cc -c input.c -o input.o'. --- tests/regression.at | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/regression.at b/tests/regression.at index f8768f76..e0f0cd53 100644 --- a/tests/regression.at +++ b/tests/regression.at @@ -51,7 +51,7 @@ exp: MY_TOKEN; ]]) AT_CHECK([bison input.y -o input.c]) -AT_COMPILE([input], [-c input.c]) +AT_COMPILE([input.o], [-c input.c]) AT_CLEANUP @@ -328,7 +328,7 @@ exp: "a"; ]]) AT_CHECK([bison input.y -o input.c]) -AT_COMPILE([input], [input.c -c]) +AT_COMPILE([input.o], [-c input.c]) AT_CLEANUP -- 2.50.0