Skip to content

Commit

Permalink
builddeb: match temporary directory name to the package name
Browse files Browse the repository at this point in the history
The temporary directory names, debian/hdrtmp (linux-headers package)
vs debian/headertmp (linux-libc-dev package), are confusing.

Matching the directory name to the package name is clearer, IMHO.

Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
masahir0y committed Jan 28, 2020
1 parent 7e61b16 commit 1694e94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/package/builddeb
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ create_package() {
}

version=$KERNELRELEASE
tmpdir="$objtree/debian/tmp"
kernel_headers_dir="$objtree/debian/hdrtmp"
libc_headers_dir="$objtree/debian/headertmp"
dbg_dir="$objtree/debian/dbgtmp"
tmpdir="$objtree/debian/linux-image"
kernel_headers_dir="$objtree/debian/linux-headers"
libc_headers_dir="$objtree/debian/linux-libc-dev"
dbg_dir="$objtree/debian/linux-image-dbg"
packagename=linux-image-$version
kernel_headers_packagename=linux-headers-$version
libc_headers_packagename=linux-libc-dev
Expand Down

0 comments on commit 1694e94

Please sign in to comment.