diff options
author | Luis R. Rodriguez <mcgrof@suse.com> | 2014-11-04 18:14:29 -0800 |
---|---|---|
committer | Luis R. Rodriguez <mcgrof@do-not-panic.com> | 2014-11-14 13:47:17 -0800 |
commit | 1ce22a0938ac10c576431fc1d3150763f15aa4d8 (patch) | |
tree | bcbe6af244d21924149273bc672851daab7cc012 /backport/Makefile | |
parent | cb1b116353ad544dd8238edbe71efcca838b001a (diff) |
backports: remove extra BACKPORT_ prefix from kernel versioning
The CPTCFG_ prefix already implies backport, when integration
is used we'd end up with a double BACKPORT_ prefix, so just
remove the existing one as its not needed.
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Diffstat (limited to 'backport/Makefile')
-rw-r--r-- | backport/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backport/Makefile b/backport/Makefile index fcf2f015..c21b8135 100644 --- a/backport/Makefile +++ b/backport/Makefile @@ -93,7 +93,7 @@ mrproper: print=0 ;\ for v in $$kvers ; do \ if [ "$$print" = "1" ] ; then \ - echo config BACKPORT_KERNEL_$$(echo $$v | tr . _) ;\ + echo config KERNEL_$$(echo $$v | tr . _) ;\ echo " def_bool y" ;\ fi ;\ if [ "$$v" = "$$kver" ] ; then print=1 ; fi ;\ |