diff options
author | danfe <danfe@FreeBSD.org> | 2005-12-20 16:24:16 +0000 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2005-12-20 16:24:16 +0000 |
commit | cbb5c637bc4b2eafdbbce632bca1e2c44aee8796 (patch) | |
tree | 74e672ba68730cb01dd9c12e017387b23078ad2e /archivers | |
parent | 8079a638474d94568e8ebf903f7eba1b64f33af8 (diff) | |
download | FreeBSD-ports-cbb5c637bc4b2eafdbbce632bca1e2c44aee8796.zip FreeBSD-ports-cbb5c637bc4b2eafdbbce632bca1e2c44aee8796.tar.gz |
- Fix a silly typo in files/Makefile
- Add SHA256 hash while here
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bicom/distinfo | 1 | ||||
-rw-r--r-- | archivers/bicom/files/Makefile | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/archivers/bicom/distinfo b/archivers/bicom/distinfo index 5d01b66..a67b13f 100644 --- a/archivers/bicom/distinfo +++ b/archivers/bicom/distinfo @@ -1,2 +1,3 @@ MD5 (bicom101.zip) = 6d07af1f3255012944777c43e8224d3f +SHA256 (bicom101.zip) = b9d421520bb70fdbd49dae556bcd981010545235a995be77c1009ad57d4da4dc SIZE (bicom101.zip) = 104408 diff --git a/archivers/bicom/files/Makefile b/archivers/bicom/files/Makefile index cb573ac..c3513ce 100644 --- a/archivers/bicom/files/Makefile +++ b/archivers/bicom/files/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ # -CCX = c++ +CXX ?= c++ IDIR = -I./bialib @@ -16,10 +16,10 @@ OBJS = bialib/mtstream.o \ bicom/bicom.o .cpp.o: - ${CCX} ${CXXFLAGS} ${IDIR} -c $< -o $*.o + ${CXX} ${CXXFLAGS} ${IDIR} -c $< -o $*.o all: ${OBJS} - ${CCX} ${CXXFLAGS} -o bicom/bicom ${OBJS} + ${CXX} ${CXXFLAGS} -o bicom/bicom ${OBJS} clean: rm -f bicom/bicom bicom/*.o bialib/*.o core |