1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Rectify previous commit: CFLAGS should be CXXFLAGS

This commit is contained in:
Kris Kennaway 2000-02-02 07:33:07 +00:00
parent 28c30ae35d
commit f981e8c9cc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25404

View File

@ -3,10 +3,10 @@
#
CXX?= g++
CFLAGS?=-O2
CXXFLAGS?=-O2
pilot_makedoc: makedoc7.cpp
${CXX} ${CFLAGS} -o pilot_makedoc makedoc7.cpp
${CXX} ${CXXFLAGS} -o pilot_makedoc makedoc7.cpp
#
# EOF