svn.py: Handle paths in svn fetcher module parameter
authorRichard Purdie <rpurdie@linux.intel.com>
Sat, 25 Aug 2007 14:33:39 +0000 (14:33 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Sat, 25 Aug 2007 14:33:39 +0000 (14:33 +0000)
ChangeLog
lib/bb/fetch/svn.py

index 927d06d..b8ab651 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@ Changes in BitBake 1.8.x:
        - Improve provider sorting so prefered versions have preference over latest versions (#768)
        - Detect builds of tasks with overlapping providers and warn (will become a fatal error) (#1359)
        - Add MULTI_PROVIDER_WHITELIST variable to allow known safe multiple providers to be listed
+       - Handle paths in svn fetcher module parameter
 
 Changes in Bitbake 1.8.8:
        - Rewrite svn fetcher to make adding extra operations easier 
index af8543a..95b21fe 100644 (file)
@@ -163,7 +163,7 @@ class Svn(Fetch):
         os.chdir(ud.pkgdir)
         # tar them up to a defined filename
         try:
-            runfetchcmd("tar -czf %s %s" % (ud.localpath, os.path.basename(ud.module)), d)
+            runfetchcmd("tar -czf %s %s" % (ud.localpath, ud.module), d)
         except:
             t, v, tb = sys.exc_info()
             try: