diff options
author | R. Imura <imura@FreeBSD.org> | 2000-02-25 17:25:42 +0000 |
---|---|---|
committer | R. Imura <imura@FreeBSD.org> | 2000-02-25 17:25:42 +0000 |
commit | 9d118e448111b38d7864d53eeff1caa3070a6070 (patch) | |
tree | e013124e1d352aae23e86f56361e1fbd71125234 /misc | |
parent | Add LIB_DEPENDS=kdelibs. (diff) |
Small modification to respect $(CXX).
Notes
Notes:
svn path=/head/; revision=26280
Diffstat (limited to 'misc')
-rw-r--r-- | misc/peq/files/patch-aa | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/misc/peq/files/patch-aa b/misc/peq/files/patch-aa index 625233f45ef4..38fffaa1d850 100644 --- a/misc/peq/files/patch-aa +++ b/misc/peq/files/patch-aa @@ -1,16 +1,22 @@ *** Makefile.orig Fri Apr 2 19:52:27 1999 --- Makefile Fri Apr 2 19:51:11 1999 *************** -*** 7,13 **** - CC = g++ +*** 4,13 **** + VERSION = 0.7.1 + + # Your C++ compiler +! CC = g++ # Flags to pass to the C++ compiler ! FLAGS = -O -Wall # Your tar TAR = tar ---- 7,13 ---- - CC = g++ +--- 4,13 ---- + VERSION = 0.7.1 + + # Your C++ compiler +! CC = $(CXX) # Flags to pass to the C++ compiler ! FLAGS = -DPREFIX=\"${PREFIX}\" ${CFLAGS} -L /usr/X11R6/lib -I /usr/X11R6/include |