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

@@ -44,7 +44,6 @@
#include "parser_keywords.h"
#include "wutil.h"
#include "path.h"
#include "builtin_scripts.h"
/*
Completion description strings, mostly for different types of files, such as sockets, block devices, etc.
@@ -419,9 +418,7 @@ public:
static completion_autoload_t completion_autoloader;
/** Constructor */
completion_autoload_t::completion_autoload_t() : autoload_t(L"fish_complete_path",
internal_completion_scripts,
sizeof internal_completion_scripts / sizeof *internal_completion_scripts)
completion_autoload_t::completion_autoload_t() : autoload_t(L"fish_complete_path", NULL, 0)
{
}