mirror of
https://github.com/envmodules/modules.git
synced 2026-06-10 00:56:30 +08:00
Introduce the --with-tcl-linter-opts configure option to choose at installation time the options to pass to the tcl linter program. Default option is ''.
113 lines
3.0 KiB
Plaintext
113 lines
3.0 KiB
Plaintext
set install_baseprefix "@baseprefix@"
|
|
set install_prefix "@prefix@"
|
|
set install_bindir "@bindir@"
|
|
set install_mandir "@mandir@"
|
|
set install_etcdir "@etcdir@"
|
|
set install_initdir "@initdir@"
|
|
set install_libdir "@libdir@"
|
|
set install_libexecdir "@libexecdir@"
|
|
set install_modulefilesdir "@modulefilesdir@"
|
|
set install_moduleshome "@moduleshome@"
|
|
|
|
set install_versioning "@versioning@"
|
|
|
|
set install_version "@VERSION@"
|
|
set install_release "@RELEASE@"
|
|
|
|
set install_modulepath {@modulepath@}
|
|
set install_loadedmodules "@loadedmodules@"
|
|
|
|
set install_silentshdbgsupport "@silentshdbgsupport@"
|
|
set install_setshellstartup "@setshellstartup@"
|
|
set install_quarantinesupport "@quarantinesupport@"
|
|
set install_quarantinevars "@quarantinevars@"
|
|
|
|
set install_libtclenvmodules "@libtclenvmodules@"
|
|
set install_shlib_suffix "@SHLIB_SUFFIX@"
|
|
|
|
set install_multilibsupport "@multilibsupport@"
|
|
set install_libdir64 "@libdir64@"
|
|
set install_libdir32 "@libdir32@"
|
|
|
|
set install_setmanpath "@setmanpath@"
|
|
set install_appendmanpath "@appendmanpath@"
|
|
set install_usemanpath "@usemanpath@"
|
|
set install_setbinpath "@setbinpath@"
|
|
set install_appendbinpath "@appendbinpath@"
|
|
set install_examplemodulefiles "@examplemodulefiles@"
|
|
|
|
set install_initconfin "@initconfin@"
|
|
|
|
set install_builddoc "@builddoc@"
|
|
|
|
set install_pager "@pager@"
|
|
set install_pageropts "@pageropts@"
|
|
set install_pagercmd $install_pager
|
|
if {$install_pageropts ne {}} {
|
|
append install_pagercmd " $install_pageropts"
|
|
}
|
|
|
|
set install_verbosity "@verbosity@"
|
|
|
|
set install_color "@color@"
|
|
set install_darkbgcolors "@darkbgcolors@"
|
|
set install_lightbgcolors "@lightbgcolors@"
|
|
set install_termbg "@termbg@"
|
|
|
|
set install_autohandling "@autohandling@"
|
|
|
|
set install_implicitrequirement "@implicitrequirement@"
|
|
|
|
set install_availindepth "@availindepth@"
|
|
|
|
set install_lockedconfigs "@lockedconfigs@"
|
|
|
|
set install_unloadmatchorder "@unloadmatchorder@"
|
|
|
|
set install_implicitdefault "@implicitdefault@"
|
|
|
|
set install_extendeddefault "@extendeddefault@"
|
|
|
|
set install_advversspec "@advversspec@"
|
|
|
|
set install_searchmatch "@searchmatch@"
|
|
|
|
set install_wa277 "@wa277@"
|
|
|
|
set install_icase "@icase@"
|
|
|
|
set install_ml "@ml@"
|
|
|
|
set install_windowssupport "@windowssupport@"
|
|
|
|
set install_nearlyforbiddendays "@nearlyforbiddendays@"
|
|
|
|
set install_tagabbrev "@tagabbrev@"
|
|
set install_tagcolorname "@tagcolorname@"
|
|
|
|
set install_mcookieversioncheck "@mcookieversioncheck@"
|
|
|
|
set install_availoutput "@availoutput@"
|
|
set install_availterseoutput "@availterseoutput@"
|
|
set install_listoutput "@listoutput@"
|
|
set install_listterseoutput "@listterseoutput@"
|
|
|
|
set install_variantshortcut "@variantshortcut@"
|
|
|
|
set install_editor "@editor@"
|
|
|
|
set install_bashcompletiondir "@bashcompletiondir@"
|
|
set install_fishcompletiondir "@fishcompletiondir@"
|
|
set install_zshcompletiondir "@zshcompletiondir@"
|
|
|
|
set install_tcllinter "@tcllinter@"
|
|
set install_tcllinteropts "@tcllinteropts@"
|
|
set install_tcllintercmd $install_tcllinter
|
|
if {$install_tcllinteropts ne {}} {
|
|
append install_tcllintercmd " $install_tcllinteropts"
|
|
}
|
|
|
|
# command location
|
|
set install_tclsh "@TCLSH@"
|
|
set install_python "@PYTHON@"
|