Merge pull request #2215 from dotnet/brthor/version-manpages
Enable SxS Installation of the SDK debian packages
This commit is contained in:
commit
fa01c9a154
2 changed files with 4 additions and 4 deletions
|
@ -31,9 +31,5 @@
|
|||
"debian_dependencies":{
|
||||
"clang-3.5" : {},
|
||||
"%SHARED_FRAMEWORK_DEBIAN_PACKAGE_NAME%" : {}
|
||||
},
|
||||
|
||||
"symlinks": {
|
||||
"bin/dotnet-compile-native" : "/usr/bin/dotnet-compile-native"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -171,6 +171,10 @@ copy_files_to_debian_layout(){
|
|||
|
||||
# Copy Manpages
|
||||
cp -a "$MANPAGE_DIR/sdk/." "$PACKAGE_LAYOUT_DIR/docs"
|
||||
|
||||
# Append Version to all manpage files
|
||||
for manpage in "$PACKAGE_LAYOUT_DIR/docs/"*.1; do mv "$manpage" "${manpage%.1}"; done
|
||||
for manpage in "$PACKAGE_LAYOUT_DIR/docs/"*; do mv "$manpage" "${manpage}-${DOTNET_CLI_VERSION}.1"; done
|
||||
}
|
||||
|
||||
create_debian_package(){
|
||||
|
|
Loading…
Add table
Reference in a new issue