diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-08-23 05:28:00 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-08-23 05:28:00 +0000 |
commit | 12643e8461cac65d449f87ed9e96d1406f97fb57 (patch) | |
tree | 4fb29ab895d28a44d9cdf2345ffe3da541352944 /japanese | |
parent | <malloc.h> -> <stdlib.h> to fix build on current (diff) |
Build with CXX and CXXFLAGS instead of CC and CFLAGS (fixes build on
current)
Notes
Notes:
svn path=/head/; revision=64862
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/hex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/japanese/hex/Makefile b/japanese/hex/Makefile index 8899ab398239..ddd5d8eba7fe 100644 --- a/japanese/hex/Makefile +++ b/japanese/hex/Makefile @@ -18,7 +18,7 @@ MANLANG= ja MAN1= hex.1 do-build: - cd ${WRKSRC}; ${CC} ${CFLAGS} hex.cc -o hex + cd ${WRKSRC}; ${CXX} ${CXXFLAGS} hex.cc -o hex do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hex ${PREFIX}/bin |