diff options
author | obrien <obrien@FreeBSD.org> | 2001-01-10 19:12:47 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-01-10 19:12:47 +0000 |
commit | 08d8f1af69df5659ed73b21894d719b8632da58d (patch) | |
tree | 544ab0e451487504a79d597cbcfba761f60d88d8 /usr.bin/rpcgen | |
parent | d9000b19e74ef5ebeaa76c4ae9dd6fe0417715f9 (diff) | |
download | FreeBSD-src-08d8f1af69df5659ed73b21894d719b8632da58d.zip FreeBSD-src-08d8f1af69df5659ed73b21894d719b8632da58d.tar.gz |
Have rpcgen actually tell us what cpp it is looking for (as it would if we
were SVR%).
Diffstat (limited to 'usr.bin/rpcgen')
-rw-r--r-- | usr.bin/rpcgen/rpc_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/rpcgen/rpc_main.c b/usr.bin/rpcgen/rpc_main.c index 1176418..5e2ebf7 100644 --- a/usr.bin/rpcgen/rpc_main.c +++ b/usr.bin/rpcgen/rpc_main.c @@ -336,7 +336,7 @@ static void find_cpp() } else { /* try the other one */ CPP = SUNOS_CPP; if (stat(CPP, &buf) < 0) { /* can't find any cpp */ - warnx("cannot find any C preprocessor (cpp)"); + warnx("cannot find C preprocessor: %s", CPP); crash(); } } |