diff options
Diffstat (limited to 'cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh')
-rw-r--r-- | cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh b/cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh index 852f5a0b3c7fa..0c8b072cb0d32 100644 --- a/cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh +++ b/cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh @@ -24,6 +24,7 @@ # Copyright 2006 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # +#ident "%Z%%M% %I% %E% SMI" if [ $# != 1 ]; then echo expected one argument: '<'dtrace-path'>' @@ -64,7 +65,7 @@ main(int argc, char **argv) } EOF -gcc -c test.c +cc -c test.c if [ $? -ne 0 ]; then print -u2 "failed to compile test.c" exit 1 @@ -74,7 +75,7 @@ if [ $? -ne 0 ]; then print -u2 "failed to create DOF" exit 1 fi -gcc -o test test.o prov.o +cc -o test test.o prov.o if [ $? -ne 0 ]; then print -u2 "failed to link final executable" exit 1 |