[pypy-commit] pypy reverse-debugger: Rename the src directory

arigo pypy.commits at gmail.com
Mon Jun 13 03:44:36 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: reverse-debugger
Changeset: r85116:eff7204f9b22
Date: 2016-06-13 08:49 +0200
http://bitbucket.org/pypy/pypy/changeset/eff7204f9b22/

Log:	Rename the src directory

diff --git a/rpython/translator/c/src/entrypoint.c b/rpython/translator/c/src/entrypoint.c
--- a/rpython/translator/c/src/entrypoint.c
+++ b/rpython/translator/c/src/entrypoint.c
@@ -38,7 +38,7 @@
 #endif
 
 #ifdef RPY_REVERSE_DEBUGGER
-# include <rdb-src/revdb_include.h>
+# include <src-revdb/revdb_include.h>
 #endif
 
 RPY_EXPORTED
diff --git a/rpython/translator/c/src/g_include.h b/rpython/translator/c/src/g_include.h
--- a/rpython/translator/c/src/g_include.h
+++ b/rpython/translator/c/src/g_include.h
@@ -52,5 +52,5 @@
 #endif
 
 #ifdef RPY_REVERSE_DEBUGGER
-#include "rdb-src/revdb_include.h"
+#include "src-revdb/revdb_include.h"
 #endif
diff --git a/rpython/translator/revdb/revdb_genc.py b/rpython/translator/revdb/revdb_genc.py
--- a/rpython/translator/revdb/revdb_genc.py
+++ b/rpython/translator/revdb/revdb_genc.py
@@ -5,7 +5,7 @@
 
 
 def extra_files():
-    srcdir = py.path.local(__file__).join('..', 'rdb-src')
+    srcdir = py.path.local(__file__).join('..', 'src-revdb')
     return [
         srcdir / 'revdb.c',
     ]
diff --git a/rpython/translator/revdb/rdb-src/revdb.c b/rpython/translator/revdb/src-revdb/revdb.c
rename from rpython/translator/revdb/rdb-src/revdb.c
rename to rpython/translator/revdb/src-revdb/revdb.c
--- a/rpython/translator/revdb/rdb-src/revdb.c
+++ b/rpython/translator/revdb/src-revdb/revdb.c
@@ -12,7 +12,7 @@
 #include "forwarddecl.h"
 #include "preimpl.h"
 #include "src/rtyper.h"
-#include "rdb-src/revdb_include.h"
+#include "src-revdb/revdb_include.h"
 
 #define RDB_SIGNATURE   "RevDB:"
 #define RDB_VERSION     0x00FF0001
diff --git a/rpython/translator/revdb/rdb-src/revdb_include.h b/rpython/translator/revdb/src-revdb/revdb_include.h
rename from rpython/translator/revdb/rdb-src/revdb_include.h
rename to rpython/translator/revdb/src-revdb/revdb_include.h


More information about the pypy-commit mailing list