aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsnarkyboojum <snarkyboojum@gmail.com>2010-08-01 23:57:49 +1000
committerpmichaud <pmichaud@pobox.com>2010-08-01 10:49:17 -0500
commit3f97bc3f81fefc05f7376c11a01f474198ef8145 (patch)
treee5ea0d8f2295d37dc8116a1a4b63204e6ef1ebc0 /Makefile
parent4dcba4ff99473bba665ac6c7eb9c51b00040751a (diff)
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 <pmichaud@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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