From 38c8ce8e6fdb233b2389b8a2124b9b1d61ef3b83 Mon Sep 17 00:00:00 2001
From: Armin Novak <armin.novak@thincast.com>
Date: Fri, 9 Oct 2015 15:48:19 +0200
Subject: [PATCH] Another IOError, now in copy_obj.py

---
 chromium/third_party/libvpx/copy_obj.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/chromium/third_party/libvpx/copy_obj.py b/chromium/third_party/libvpx/copy_obj.py
index 5fd2173..888ad80 100755
--- a/chromium/third_party/libvpx/copy_obj.py
+++ b/chromium/third_party/libvpx/copy_obj.py
@@ -24,6 +24,8 @@ if (not options.destination or not options.source):
   sys.exit(1)
 
 for src in options.source:
+  src = os.path.normpath(os.path.join(os.getcwd(), src))
+  options.destination = os.path.normpath(os.path.join(os.getcwd(), options.destination))
   if os.path.exists(src):
     shutil.copyfile(src, options.destination)
     sys.exit(0)
-- 
1.9.5.msysgit.0

