From 18ef1bcfa23a4e582e37cb9e806b06e9a6c13b53 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Thu, 9 Sep 2010 14:15:40 -0700 Subject: swig: don't override SWIG_name anymore It doesn't appear to be necessary and it is somewhat odd. I'm pretty sure that the package parameter to %module does whatever this might have been before. It's necessary in future revisions anyway. --- src/python/swig/random.i | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/python/swig/random.i') diff --git a/src/python/swig/random.i b/src/python/swig/random.i index d9ea2a404..cf64654ea 100644 --- a/src/python/swig/random.i +++ b/src/python/swig/random.i @@ -28,7 +28,7 @@ * Authors: Nathan Binkert */ -%module random +%module(package="m5.internal") random %include "stdint.i" @@ -47,9 +47,3 @@ seed(uint64_t seed) %inline %{ extern void seed(uint64_t seed); %} - -%wrapper %{ -// fix up module name to reflect the fact that it's inside the m5 package -#undef SWIG_name -#define SWIG_name "m5.internal._random" -%} -- cgit v1.2.3