diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2019-11-22 04:52:29 +0800 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2019-11-22 04:52:29 +0800 |
commit | 287f0ce1376a3dbbef6ad4bd0cea58db2832019f (patch) | |
tree | 36cfe13f3bba65d5ab1997dcdf984ff6a0784cf0 /net | |
parent | 7b04eb900c72a231d05f7447687aa4b2c227fe31 (diff) | |
download | freebsd-ports-gnome-287f0ce1376a3dbbef6ad4bd0cea58db2832019f.tar.gz freebsd-ports-gnome-287f0ce1376a3dbbef6ad4bd0cea58db2832019f.tar.zst freebsd-ports-gnome-287f0ce1376a3dbbef6ad4bd0cea58db2832019f.zip |
Fix build on HEAD.
Makefiles that use the FreeBSD make infrastructure should be seeing
MAN= rather than defining NO_MAN since 2014.
Diffstat (limited to 'net')
-rw-r--r-- | net/bsdec2-image-upload/files/patch-Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/bsdec2-image-upload/files/patch-Makefile b/net/bsdec2-image-upload/files/patch-Makefile new file mode 100644 index 000000000000..8bf7e52f66e8 --- /dev/null +++ b/net/bsdec2-image-upload/files/patch-Makefile @@ -0,0 +1,10 @@ +--- Makefile.orig ++++ Makefile +@@ -1,6 +1,6 @@ + PROG= bsdec2-image-upload + SRCS= main.c +-NO_MAN ?= yes ++MAN = + WARNS ?= 3 + BINDIR ?= /usr/local/bin + LDADD += -lcrypto -lssl |