Skip to content

Commit

Permalink
Haiku: add search path for terminfo
Browse files Browse the repository at this point in the history
* Hand rebased from Niels original work on 1.9.0
  • Loading branch information
nielx authored and kallisti5 committed Sep 25, 2016
1 parent ba6eb57 commit 328743a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libterm/terminfo/searcher.rs
Expand Up @@ -48,10 +48,12 @@ pub fn get_dbpath_for_term(term: &str) -> Option<PathBuf> {
// According to /etc/terminfo/README, after looking at
// ~/.terminfo, ncurses will search /etc/terminfo, then
// /lib/terminfo, and eventually /usr/share/terminfo.
// On Haiku the database can be found at /boot/system/data/terminfo
Err(..) => {
dirs_to_search.push(PathBuf::from("/etc/terminfo"));
dirs_to_search.push(PathBuf::from("/lib/terminfo"));
dirs_to_search.push(PathBuf::from("/usr/share/terminfo"));
dirs_to_search.push(PathBuf::from("/boot/system/data/terminfo"));
}
}
}
Expand Down

0 comments on commit 328743a

Please sign in to comment.