summaryrefslogtreecommitdiff
path: root/src/helper/options.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-27 07:49:58 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-27 07:49:58 +0000
commitdd86b54e6e03a0682eb8ed41006ffdfd837ffae0 (patch)
treefcd056391c8d98cad8823a9dbb0576c1e373dabe /src/helper/options.c
parentdbbc9c41f7db210b0a4e226540a28e0a8a5019bf (diff)
downloadopenocd+libswd-dd86b54e6e03a0682eb8ed41006ffdfd837ffae0.tar.gz
openocd+libswd-dd86b54e6e03a0682eb8ed41006ffdfd837ffae0.tar.bz2
openocd+libswd-dd86b54e6e03a0682eb8ed41006ffdfd837ffae0.tar.xz
openocd+libswd-dd86b54e6e03a0682eb8ed41006ffdfd837ffae0.zip
Update build system to find moved scripts -- Step 3 of 2:
- Update references from using PKGLIBDIR to PKGDATADIR. - Update built-in script search paths to reflect new install location: - $(pkgdatadir) => $(pktdatadir)/site - $(pkglibdir) => $(pktdatadir)/scripts - Update installed location of httpd files: - $(pkglibdir)/httpd => $(pkgdatadir)/httpd git-svn-id: svn://svn.berlios.de/openocd/trunk@1920 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/options.c')
-rw-r--r--src/helper/options.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/helper/options.c b/src/helper/options.c
index 53e23c95..8242a8dd 100644
--- a/src/helper/options.c
+++ b/src/helper/options.c
@@ -97,10 +97,14 @@ int add_default_dirs(void)
add_script_search_dir(strExePath);
}
#else
- /* Add dir for openocd supplied scripts last so that user can over
- ride those scripts if desired. */
- add_script_search_dir(PKGDATADIR);
- add_script_search_dir(PKGLIBDIR);
+ /*
+ * The directory containing OpenOCD-supplied scripts should be
+ * listed last in the built-in search order, so the user can
+ * override these scripts with site-specific customizations.
+ */
+ /// @todo Implement @c add_script_search_dir("${HOME}/.openocd").
+ add_script_search_dir(PKGDATADIR "/site");
+ add_script_search_dir(PKGDATADIR "/scripts");
#endif
return ERROR_OK;
}