mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
c2f6c6c1d2
darcs-hash:20060301165347-ac50b-3df9feec60dd9860e0988396d10b550a501f6802.gz
12 lines
1.1 KiB
Fish
12 lines
1.1 KiB
Fish
complete -c configure -s h -l help -x -a "short recursive" -d (N_ "Display help and exit")
|
|
complete -c configure -s V -l version -d (N_ "Display version and exit")
|
|
complete -c configure -s q -l quiet -d (N_ "Quiet mode")
|
|
complete -c configure -l cache-file -f -d (N_ "Cache test results in specified file")
|
|
complete -c configure -s C -l config-cache -d (N_ "Cache test results in file config.cache")
|
|
complete -c configure -s n -l no-create -d (N_ "Do not create output files")
|
|
complete -c configure -l srcdir -d (N_ "Set source directory") -a "__fish_complete_directory (commandline -ct)" -x
|
|
complete -c configure -l prefix -d (N_ "Architecture-independent install directory") -a "__fish_complete_directory (commandline -ct)" -x
|
|
complete -c configure -l exec-prefix -d (N_ "Architecture-dependent install directory") -a "__fish_complete_directory (commandline -ct)" -x
|
|
complete -c configure -l build -d (N_ "Configure for building on BUILD") -x
|
|
complete -c configure -l host -d (N_ "Cross-compile to build programs to run on HOST") -x
|
|
complete -c configure -l target -d (N_ "Configure for building compilers for TARGET") -x -u
|