From: Paul Eggert Date: Mon, 12 Aug 2002 14:58:16 +0000 (+0000) Subject: Do not use 'cc -c input.c -o input'; X-Git-Tag: BISON-1_49b~8 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/002b9b7d1f3ae2d92c7ccec252babbd7fb68f57a Do not use 'cc -c input.c -o input'; Sun C rejects this. Instead, use 'cc -c input.c -o input.o'. --- 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