Package: mediaelement / 2.15.1+dfsg-1

0001-Use-yui-compressor-instead-of-bundled-Jar.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Wed, 1 Jan 2014 16:42:12 -0400
Subject: Use yui-compressor instead of bundled Jar

---
 src/Builder.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Builder.py b/src/Builder.py
index a834824..cf1ab72 100755
--- a/src/Builder.py
+++ b/src/Builder.py
@@ -131,7 +131,7 @@ src_file = open('css/mediaelementplayer.css','r')
 tmp_file = open('../build/mediaelementplayer.css','w')
 tmp_file.write(src_file.read())
 tmp_file.close()
-os.system("java -jar yuicompressor-2.4.2.jar ../build/mediaelementplayer.css -o ../build/mediaelementplayer.min.css --charset utf-8 -v")
+os.system("yui-compressor ../build/mediaelementplayer.css -o ../build/mediaelementplayer.min.css --charset utf-8 -v")
 
 #COPY skin files
 print('Copying Skin Files')