diff --git a/Makefile.in b/Makefile.in index d770102f0..7461b6f1f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -168,8 +168,14 @@ GENERATED_INTERN_SCRIPT_FILES := builtin_scripts.h builtin_scripts.cpp # Use a pattern rule so that Make knows to only issue one invocation # per http://www.gnu.org/software/make/manual/make.html#Pattern-Intro + +# Internalized scripts are currently disabled. +# For now, we just generate empty arrays. +# To generate them again, you would run this: +# ./internalize_scripts.py share/functions/*.fish share/completions/*.fish + builtin%scripts.h builtin%scripts.cpp: internalize_scripts.py - ./internalize_scripts.py share/functions/*.fish share/completions/*.fish + ./internalize_scripts.py # diff --git a/autoload.cpp b/autoload.cpp index 2d1b83943..5e56f5e49 100644 --- a/autoload.cpp +++ b/autoload.cpp @@ -18,6 +18,7 @@ The classes responsible for autoloading functions and completions. static const int kAutoloadStalenessInterval = 15; file_access_attempt_t access_file(const wcstring &path, int mode) { + //printf("Touch %ls\n", path.c_str()); file_access_attempt_t result = {0}; struct stat statbuf; if (wstat(path, &statbuf)) {