Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Sep 2014 17:37:20 +0000 (UTC)
From:      Will Andrews <will@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r271796 - head/tools/regression/pjdfstest
Message-ID:  <201409181737.s8IHbKR5062250@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: will
Date: Thu Sep 18 17:37:19 2014
New Revision: 271796
URL: http://svnweb.freebsd.org/changeset/base/271796

Log:
  Use 'cc' for the C compiler instead of 'gcc'.
  
  MFC after:	1 week
  Sponsored by:	Spectra Logic
  MFSpectraBSD:	1079507 on 2014/07/24

Modified:
  head/tools/regression/pjdfstest/Makefile

Modified: head/tools/regression/pjdfstest/Makefile
==============================================================================
--- head/tools/regression/pjdfstest/Makefile	Thu Sep 18 17:28:21 2014	(r271795)
+++ head/tools/regression/pjdfstest/Makefile	Thu Sep 18 17:37:19 2014	(r271796)
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409181737.s8IHbKR5062250>