Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Duplicate case entry in PKGBUILD #241

Closed
pega2k opened this issue Apr 5, 2024 · 1 comment
Closed

Duplicate case entry in PKGBUILD #241

pega2k opened this issue Apr 5, 2024 · 1 comment

Comments

@pega2k
Copy link

pega2k commented Apr 5, 2024

Hi,

I think this must be fixed:

## List of CachyOS schedulers
case "$_cpusched" in
    cachyos|sched-ext) ## SCHED-EXT + BORE Scheduler
        source+=("${_patchsource}/sched/0001-sched-ext.patch"
                 "${_patchsource}/sched/0001-bore-cachy-ext.patch");;
...
    sched-ext) ## SCHED-EXT
        source+=("${_patchsource}/sched/0001-sched-ext.patch");;
esac

With this:

## List of CachyOS schedulers
case "$_cpusched" in
    cachyos) ## SCHED-EXT + BORE Scheduler
        source+=("${_patchsource}/sched/0001-sched-ext.patch"
                 "${_patchsource}/sched/0001-bore-cachy-ext.patch");;
...
    sched-ext) ## SCHED-EXT
        source+=("${_patchsource}/sched/0001-sched-ext.patch");;
esac

Keep the great work, PE.

@sirlucjan
Copy link
Member

Yes, indeed. I'll fix it ASAP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants