Remove Python dependency from Makefile and Xcode build

https://github.com/fish-shell/fish-shell/issues/429
This commit is contained in:
ridiculousfish
2012-12-08 21:41:38 -08:00
parent c8f7d33a9a
commit 6a8219a02e
7 changed files with 85 additions and 267 deletions

View File

@@ -36,7 +36,6 @@
#include "parser_keywords.h"
#include "env.h"
#include "expand.h"
#include "builtin_scripts.h"
/**
Table containing all functions
@@ -58,9 +57,7 @@ public:
static function_autoload_t function_autoloader;
/** Constructor */
function_autoload_t::function_autoload_t() : autoload_t(L"fish_function_path",
internal_function_scripts,
sizeof internal_function_scripts / sizeof *internal_function_scripts)
function_autoload_t::function_autoload_t() : autoload_t(L"fish_function_path", NULL, 0)
{
}