From fbcb13d274ce39f50a16adc57532159afbd55a09 Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Tue, 29 Jan 2019 22:05:52 +1000 Subject: [PATCH] FreeBSD xargs fixup for auto/Makefile --- auto/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto/Makefile b/auto/Makefile index fa3218d..5b855a2 100644 --- a/auto/Makefile +++ b/auto/Makefile @@ -114,7 +114,7 @@ ifeq ($(patsubst Darwin%,Darwin,$(SYSTEM)), Darwin) xargs -J % cp % $(EXT) else find $(CORE) -maxdepth 1 -type f | grep -v VERSION | grep -v "~" | \ - xargs cp --target-directory=$(EXT) + xargs -I % -n 1 cp % $(EXT) endif touch $@