Date: Mon, 19 Feb 2018 22:38:04 +0000 (UTC) From: Craig Leres <leres@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462355 - head/net/socat/files Message-ID: <201802192238.w1JMc45e087745@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: leres Date: Mon Feb 19 22:38:04 2018 New Revision: 462355 URL: https://svnweb.freebsd.org/changeset/ports/462355 Log: Patch socat/Makefile to reference all of dependencies when linking filan so that parallel make is reliable again. PR: 226012 Reviewed by: ler (mentor) Approved by: ler (mentor) Differential Revision: https://reviews.freebsd.org/D14445 Added: head/net/socat/files/patch-Makefile.in (contents, props changed) Added: head/net/socat/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/socat/files/patch-Makefile.in Mon Feb 19 22:38:04 2018 (r462355) @@ -0,0 +1,14 @@ +--- Makefile.in.orig 2017-01-06 20:58:40 UTC ++++ Makefile.in +@@ -118,8 +118,9 @@ PROCAN_OBJS=procan_main.o procan.o proca + procan: $(PROCAN_OBJS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) + +-filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o +- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o vsnprintf_r.o snprinterr.o $(CLIBS) ++FILAN_OBJS=filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o vsnprintf_r.o snprinterr.o ++filan: $(FILAN_OBJS) ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(FILAN_OBJS) $(CLIBS) + + libxio.a: $(XIOOBJS) $(UTLOBJS) + $(AR) r $@ $(XIOOBJS) $(UTLOBJS)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802192238.w1JMc45e087745>