From 76f6a4abb464c8d2d6cb62361bb016828c8369e7 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 11 Jun 2012 08:18:30 -0700 Subject: [PATCH] Remove dep symlinks from tarball --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1a47b7c6de..f2b9c32b65 100644 --- a/Makefile +++ b/Makefile @@ -224,6 +224,7 @@ $(TARBALL): node out/doc cp -r out/doc/api/* $(TARNAME)/doc/api/ rm -rf $(TARNAME)/deps/v8/test # too big rm -rf $(TARNAME)/doc/images # too big + find $(TARNAME)/ -type l | xargs rm # annoying on windows tar -cf $(TARNAME).tar $(TARNAME) rm -rf $(TARNAME) gzip -f -9 $(TARNAME).tar