Better way of getting rid of symlinks

Windows, especially msysgit, doesn't like 'em
pull/22966/head
Bert Belder 2010-11-26 04:10:39 +01:00
parent e85733a80b
commit 3c3d1d31c5
4 changed files with 9 additions and 6 deletions

View File

@ -31,7 +31,13 @@
# char arrays. It is used for embedded JavaScript code in the V8
# library.
import os, re, sys, string
import os
from os.path import dirname
import re
import sys
import string
sys.path.append(dirname(__file__) + "/../deps/v8/tools");
import jsmin

View File

@ -1,3 +0,0 @@
import sys
sys.path.append("../deps/v8/tools")
import jsmin

View File

@ -40,9 +40,10 @@ import sys
import tempfile
import time
import threading
import utils
from Queue import Queue, Empty
sys.path.append(dirname(__file__) + "/../deps/v8/tools");
import utils
VERBOSE = False

View File

@ -1 +0,0 @@
../deps/v8/tools/utils.py