mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
fix on clang enviroment(use cc instead of gcc)
This commit is contained in:
parent
a98125b745
commit
ffcfcf4e3e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=331257
2 changed files with 1 additions and 3 deletions
|
@ -12,8 +12,6 @@ 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
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
+all: $(EXE)
|
||||
$(EXE): $(SRC)
|
||||
- gcc -lusb -g -o $@ $^
|
||||
+ gcc -lusb -g -o $@ $(SRC)
|
||||
+ cc -lusb -g -o $@ $(SRC)
|
||||
|
||||
clean:
|
||||
rm $(EXE)
|
||||
|
|
Loading…
Add table
Reference in a new issue