Rearrange rel-vcs source to avoid rel-vcs/ path prefix in rel-vcs.xpi.
authorW. Trevor King <wking@drexel.edu>
Fri, 8 Oct 2010 03:37:52 +0000 (23:37 -0400)
committerW. Trevor King <wking@drexel.edu>
Fri, 8 Oct 2010 03:37:52 +0000 (23:37 -0400)
17 files changed:
posts/rel-vcs/Makefile
posts/rel-vcs/README [moved from posts/rel-vcs/rel-vcs/README with 100% similarity]
posts/rel-vcs/chrome.manifest [moved from posts/rel-vcs/rel-vcs/chrome.manifest with 100% similarity]
posts/rel-vcs/chrome/content/about.xul [moved from posts/rel-vcs/rel-vcs/chrome/content/about.xul with 100% similarity]
posts/rel-vcs/chrome/content/contents.rdf [moved from posts/rel-vcs/rel-vcs/chrome/content/contents.rdf with 100% similarity]
posts/rel-vcs/chrome/content/overlay.js [moved from posts/rel-vcs/rel-vcs/chrome/content/overlay.js with 100% similarity]
posts/rel-vcs/chrome/content/overlay.xul [moved from posts/rel-vcs/rel-vcs/chrome/content/overlay.xul with 100% similarity]
posts/rel-vcs/chrome/locale/en-US/about.dtd [moved from posts/rel-vcs/rel-vcs/chrome/locale/en-US/about.dtd with 100% similarity]
posts/rel-vcs/chrome/locale/en-US/contents.rdf [moved from posts/rel-vcs/rel-vcs/chrome/locale/en-US/contents.rdf with 100% similarity]
posts/rel-vcs/chrome/locale/en-US/rel-vcs.dtd [moved from posts/rel-vcs/rel-vcs/chrome/locale/en-US/rel-vcs.dtd with 100% similarity]
posts/rel-vcs/chrome/skin/classic/about.css [moved from posts/rel-vcs/rel-vcs/chrome/skin/classic/about.css with 100% similarity]
posts/rel-vcs/chrome/skin/classic/contents.rdf [moved from posts/rel-vcs/rel-vcs/chrome/skin/classic/contents.rdf with 100% similarity]
posts/rel-vcs/chrome/skin/classic/logo.png [moved from posts/rel-vcs/rel-vcs/chrome/skin/classic/logo.png with 100% similarity]
posts/rel-vcs/chrome/skin/classic/logo_cold.png [moved from posts/rel-vcs/rel-vcs/chrome/skin/classic/logo_cold.png with 100% similarity]
posts/rel-vcs/chrome/skin/classic/overlay.css [moved from posts/rel-vcs/rel-vcs/chrome/skin/classic/overlay.css with 100% similarity]
posts/rel-vcs/icon.png [moved from posts/rel-vcs/rel-vcs/icon.png with 100% similarity]
posts/rel-vcs/install.rdf [moved from posts/rel-vcs/rel-vcs/install.rdf with 100% similarity]

index c8a3d56e678890acbd59cf6aa961cc481bd01879..03d142b6b62fc8aefa2286ab990b088f9a62fe8b 100644 (file)
@@ -3,7 +3,7 @@ all : rel-vcs.xpi
 clean :
        rm -f rel-vcs.xpi
 
-rel-vcs.xpi : $(shell find rel-vcs)
-       zip -r $@ rel-vcs
+rel-vcs.xpi : $(shell find . ! -name rel-vcs.xpi)
+       zip -r $@ $(shell ls . | grep -v $@)
 
 .PHONY : all clean