diff options
author | Harshavardhana Ranganath <harsha@gluster.com> | 2009-12-04 20:42:55 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-12-06 02:30:10 -0800 |
commit | a2d7ca2ee22de61bf43525e4a8a2928ce6dd8851 (patch) | |
tree | a35f7e9c2d066f43b3673c13205b2067f050464f /extras/volgen | |
parent | b5da78348291435b2f711018c529c83dc824cff8 (diff) |
glusterfs-volgen honours now build level prefix.
Signed-off-by: Harshavardhana <harsha@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 437 (Fix critical argument validation check on Fedora11 systems)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=437
Diffstat (limited to 'extras/volgen')
-rwxr-xr-x | extras/volgen/glusterfs-volgen.in (renamed from extras/volgen/glusterfs-volgen) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extras/volgen/glusterfs-volgen b/extras/volgen/glusterfs-volgen.in index 5275b9093..5d9c579cf 100755 --- a/extras/volgen/glusterfs-volgen +++ b/extras/volgen/glusterfs-volgen.in @@ -3,8 +3,10 @@ import getopt, sys, os, string from optparse import OptionParser,OptionGroup,make_option -if not "/usr/share/glusterfs" in sys.path: - sys.path.append("/usr/share/glusterfs") +prefix = "@prefix@" + +if not (prefix + "/share/glusterfs") in sys.path: + sys.path.append(prefix + "/share/glusterfs") from CreateVolfile import * from CreateBooster import * |