diff --git a/Makefile b/Makefile
index 7166d54b8cdfe2bf08b3cd481c3e7a042c26a297..93682ebb9cbdc84217660295ee37912e588b96cb 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,8 @@ $(JAR): $(OBJS)
 	@cp -r PLUGIN-INF/ build/
 	@cp -r META-INF/ build/
 	@cd java; find ./ -name "*.class" -print -exec cp --parents -r \{\} $(PWD)/build \; ; cd ..
-	@cd resources; find ./ -type f -print -exec cp --parents -r \{\} $(PWD)/build \; ; cd ..
+#	@cd resources; find ./ -type f -print -exec cp --parents -r \{\} $(PWD)/build \; ; cd ..
+	cp -a resources/ $(PWD)/build
 	@cd build; ${JAVAPATH}/jar cfvM ../$@ ./* ; cd ..
 
 %.class: %.java