diff options
Diffstat (limited to 'modules/gcc.py')
-rw-r--r-- | modules/gcc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gcc.py b/modules/gcc.py index ece02f4..fc18cb8 100644 --- a/modules/gcc.py +++ b/modules/gcc.py @@ -9,9 +9,9 @@ module = Module(name = "gcc", description = "Python GCC Version Switcher", versi bin = Action (name = 'bin', description = "Change GCC's Version", type = "sym") # Define a Symlinking Action gcc = Link(alias = "gcc", target = "/usr/bin/gcc", prefix = "/usr/bin/", regexp = "gcc-([0-9]+\.[0-9]+$)") -gcc_config = Link(alias = "gcc-config", target = "/usr/bin/gcc-config", prefix = "/usr/bin/", regexp = "gcc-config([0-9]+\.[0-9]+$)") +#gcc_config = Link(alias = "gcc-config", target = "/usr/bin/gcc-config", prefix = "/usr/bin/", regexp = "gcc-config([0-9]+\.[0-9]+$)") -gcc.add_link(gcc_config) # For inheritance +#gcc.add_link(gcc_config) # For inheritance testing bin.add_link(gcc) # Adding The Link to the action module.add_action(bin) #Adding the action to the module |