From 3f97bc3f81fefc05f7376c11a01f474198ef8145 Mon Sep 17 00:00:00 2001 From: snarkyboojum Date: Sun, 1 Aug 2010 23:57:49 +1000 Subject: Changed find command to build MANIFEST Replaced the -printf option to find with a pipe to sed to support OS X find where -printf isn't a supported option, frettled++ Signed-off-by: pmichaud --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d8198db..4aae8a0 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ $(DISTDIR)/Configure.pl: build/Configure.pl $(DISTDIR)/MANIFEST: touch $(DISTDIR)/MANIFEST - find $(DISTDIR) -name '.*' -prune -o -type f -printf '%P\n' >$(DISTDIR)/MANIFEST + find $(DISTDIR) -name '.*' -prune -o -type f | sed -e 's|^[^/]*/||' >$(DISTDIR)/MANIFEST ## add the two dot-files from Parrot MANIFEST echo "$(PARROT)/.gitignore" >>$(DISTDIR)/MANIFEST echo "$(PARROT)/tools/dev/.gdbinit" >>$(DISTDIR)/MANIFEST -- cgit v1.1