Index: head/misc/usbrh-libusb/Makefile =================================================================== --- head/misc/usbrh-libusb/Makefile (revision 331256) +++ head/misc/usbrh-libusb/Makefile (revision 331257) @@ -1,29 +1,27 @@ # Created by: sanpei@FreeBSD.org # $FreeBSD$ PORTNAME= usbrh-libusb PORTVERSION= 0.05 CATEGORIES= misc MASTER_SITES= http://www.dd.iij4u.or.jp/~briareos/soft/ \ ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= sanpei DISTNAME= usbrh-${PORTVERSION} MAINTAINER= sanpei@FreeBSD.org COMMENT= Yet another reads temperatures and humidity from a Strawberry Linux USB-RH -USE_GCC= any - PLIST_FILES= bin/usbrh NO_STAGE= yes .include .if ${OSVERSION} <= 800097 BROKEN= does not build .endif do-install: @${INSTALL_SCRIPT} ${WRKSRC}/usbrh ${PREFIX}/bin/usbrh .include Index: head/misc/usbrh-libusb/files/patch-Makefile =================================================================== --- head/misc/usbrh-libusb/files/patch-Makefile (revision 331256) +++ head/misc/usbrh-libusb/files/patch-Makefile (revision 331257) @@ -1,13 +1,13 @@ --- ./Makefile.orig 2008-03-24 23:22:09.000000000 +0900 +++ ./Makefile 2009-07-20 23:23:39.000000000 +0900 @@ -2,8 +2,9 @@ SRC = usbrh_main.c EXE = usbrh +all: $(EXE) $(EXE): $(SRC) - gcc -lusb -g -o $@ $^ -+ gcc -lusb -g -o $@ $(SRC) ++ cc -lusb -g -o $@ $(SRC) clean: rm $(EXE)