Commit 4bf4cd4939975c2f6375443212109dbb8c4e8731
Committed by
Sam Ravnborg
1 parent
edec611db0
Exists in
master
and in
39 other branches
kbuild, deb-pkg: improve Source field
The Source: field is defined as the source package in the package archive from which a binary packages are built. As deb-pkg does not generate a source package, we should avoid to use any existing source packages here. Signed-off-by: Frans Pop <elendil@planet.nl> Acked-by: maximilian attems <max@stro.at> Cc: Andres Salomon <dilinger@debian.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
scripts/package/builddeb
... | ... | @@ -114,7 +114,7 @@ |
114 | 114 | |
115 | 115 | # Generate a simple changelog template |
116 | 116 | cat <<EOF > debian/changelog |
117 | -linux ($packageversion) unstable; urgency=low | |
117 | +linux-upstream ($packageversion) unstable; urgency=low | |
118 | 118 | |
119 | 119 | * Custom built Linux kernel. |
120 | 120 | |
... | ... | @@ -143,7 +143,7 @@ |
143 | 143 | |
144 | 144 | # Generate a control file |
145 | 145 | cat <<EOF > debian/control |
146 | -Source: linux | |
146 | +Source: linux-upstream | |
147 | 147 | Section: base |
148 | 148 | Priority: optional |
149 | 149 | Maintainer: $maintainer |