summaryrefslogtreecommitdiff
path: root/palm/pilot_makedoc
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2000-02-02 07:33:07 +0000
committerKris Kennaway <kris@FreeBSD.org>2000-02-02 07:33:07 +0000
commitf981e8c9cc5c54ec6e788a6e70bd7f795faf0e63 (patch)
tree6d640a69f17fe707261f944335c6793d44f3c1d3 /palm/pilot_makedoc
parentRespect CC and CFLAGS, and create the tempfile securely with mkstemp() (diff)
Rectify previous commit: CFLAGS should be CXXFLAGS
Notes
Notes: svn path=/head/; revision=25404
Diffstat (limited to 'palm/pilot_makedoc')
-rw-r--r--palm/pilot_makedoc/files/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/palm/pilot_makedoc/files/Makefile b/palm/pilot_makedoc/files/Makefile
index ce0714d30f2f..d7c9bd12913c 100644
--- a/palm/pilot_makedoc/files/Makefile
+++ b/palm/pilot_makedoc/files/Makefile
@@ -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