* upgraded bash_completion to v1.3
* upgraded to subversion bash completion script shipped with subversion 1.6.17 * added git bash completion script shipped with git 1.7.5.4 * readded bash completion to the image git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42257 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
+19
-2
@@ -432,12 +432,29 @@ SEARCH on $(spellFiles)
|
||||
= [ FDirName $(HAIKU_TOP) src apps mail ] ;
|
||||
AddFilesToHaikuImage system data spell_check word_dictionary : $(spellFiles) ;
|
||||
|
||||
local etcFiles = inputrc profile ;
|
||||
local etcDir = [ FDirName $(HAIKU_TOP) data etc ] ;
|
||||
local etcFiles = inputrc profile bash_completion ;
|
||||
etcFiles = $(etcFiles:G=etc) ;
|
||||
SEARCH on $(etcFiles) = [ FDirName $(HAIKU_TOP) data etc ] ;
|
||||
SEARCH on $(etcFiles) = [ FDirName $(etcDir) ] ;
|
||||
etcFiles += <etc>termcap <etc>sysless <etc>sysless.in ;
|
||||
AddFilesToHaikuImage common etc : $(etcFiles) ;
|
||||
|
||||
local profileFiles = [ Glob $(etcDir)/profile.d : *.sh ] ;
|
||||
profileFiles = $(profileFiles:G=profile-d) ;
|
||||
AddDirectoryToHaikuImage common etc profile.d ;
|
||||
AddFilesToHaikuImage common etc profile.d : $(profileFiles) ;
|
||||
|
||||
local bashCompletionFiles = [ Glob $(etcDir)/bash_completion.d : * ] ;
|
||||
local bashCompletionHelperFiles
|
||||
= [ Glob $(etcDir)/bash_completion.d/helpers : * ] ;
|
||||
bashCompletionFiles = $(bashCompletionFiles:G=bash-completion) ;
|
||||
bashCompletionHelperFiles = $(bashCompletionHelperFiles:G=bash-completion-hlp) ;
|
||||
AddDirectoryToHaikuImage common etc bash_completion.d ;
|
||||
AddDirectoryToHaikuImage common etc bash_completion.d helpers ;
|
||||
AddFilesToHaikuImage common etc bash_completion.d : $(bashCompletionFiles) ;
|
||||
AddFilesToHaikuImage common etc bash_completion.d helpers
|
||||
: $(bashCompletionHelperFiles) ;
|
||||
|
||||
local dataFiles = teapot.data ;
|
||||
dataFiles = $(dataFiles:G=data) ;
|
||||
SEARCH on $(dataFiles) = [ FDirName $(HAIKU_TOP) data system data ] ;
|
||||
|
||||
Reference in New Issue
Block a user