diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-05-05 10:28:14 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-05-05 10:28:14 +0000 |
commit | de5ab839b172600eac8fcad7edd61b1ec5fdb810 (patch) | |
tree | ce33b70e7130c68f643cafaf27c7c5bd6ce0ddb3 | |
parent | 2ee08ef3fa0018f4c7240cea5ffda6f330d80c05 (diff) | |
download | freebsd-ports-de5ab839b172600eac8fcad7edd61b1ec5fdb810.zip |
sysutils/clone: fix build on GCC architectures
Use C11 compiler:
cc1: error: unrecognized command line option "-std=gnu11"
-rw-r--r-- | sysutils/clone/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysutils/clone/Makefile b/sysutils/clone/Makefile index f6905e1631d5..9801eb3dbeaa 100644 --- a/sysutils/clone/Makefile +++ b/sysutils/clone/Makefile @@ -10,6 +10,7 @@ COMMENT= File tree cloning tool LICENSE= BSD2CLAUSE +USES= compiler:c11 USE_GITHUB= yes GH_ACCOUNT= cyclaero GH_PROJECT= clone |