diff options
author | pat <pat@FreeBSD.org> | 2002-07-22 22:45:51 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-07-22 22:45:51 +0000 |
commit | 634f969f1f4ba262e69a18f3aebd5c77d1a62ddc (patch) | |
tree | 813389aa0e9d60376a7d5aa823361855e9658595 /net-p2p | |
parent | 23fc82ca2c940130b53999beb327b1161bc7f831 (diff) | |
download | FreeBSD-ports-634f969f1f4ba262e69a18f3aebd5c77d1a62ddc.zip FreeBSD-ports-634f969f1f4ba262e69a18f3aebd5c77d1a62ddc.tar.gz |
Fix build: wrong location of included getopt.h
PR: ports/40902
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/gnunet/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net-p2p/gnunet/Makefile b/net-p2p/gnunet/Makefile index fa97c63..1493af2 100644 --- a/net-p2p/gnunet/Makefile +++ b/net-p2p/gnunet/Makefile @@ -33,5 +33,10 @@ MAN5= gnunet.conf.5 post-patch: @${REINPLACE_CMD} 's|-pthread [\$$]CFLAGS|\$$CFLAGS|g ; \ s|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure +.for file in src/include/server/startup.h src/server/startup.c \ + src/textui/gnunetdownload.c src/textui/insertmain.c \ + src/textui/insertmulti.c src/util/getopt.c src/util/getopt1.c + @${REINPLACE_CMD} -e 's|"getopt.h"|"util/getopt.h"|g' ${WRKSRC}/${file} +.endfor .include <bsd.port.mk> |