diff options
author | will <will@FreeBSD.org> | 2014-09-18 17:37:19 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2014-09-18 17:37:19 +0000 |
commit | a0e8dd2d265b0d2c834b95608b7f03db46968d57 (patch) | |
tree | f4048fdd651be4e584221cd7b1bde9f098b99eda /tools | |
parent | 0362a39e44d04fea00398d45e41932b9319e6fae (diff) | |
download | FreeBSD-src-a0e8dd2d265b0d2c834b95608b7f03db46968d57.zip FreeBSD-src-a0e8dd2d265b0d2c834b95608b7f03db46968d57.tar.gz |
Use 'cc' for the C compiler instead of 'gcc'.
MFC after: 1 week
Sponsored by: Spectra Logic
MFSpectraBSD: 1079507 on 2014/07/24
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/pjdfstest/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/regression/pjdfstest/Makefile b/tools/regression/pjdfstest/Makefile index a3e35f8..18f94e9 100644 --- a/tools/regression/pjdfstest/Makefile +++ b/tools/regression/pjdfstest/Makefile @@ -18,7 +18,7 @@ ${PROG}: ${PROG}.c echo "Unsupported operating system: ${OSTYPE}."; \ exit 1; \ fi; \ - cmd="gcc -Wall $$CFLAGS ${PROG}.c -o ${PROG}"; \ + cmd="cc -Wall $$CFLAGS ${PROG}.c -o ${PROG}"; \ echo $$cmd; \ $$cmd |