summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsayad2021-01-28 10:04:53 +0600
committersayad2021-01-28 10:04:53 +0600
commitab3c8fd1b22148fabbfb163e2f2137650ea3a3df (patch)
treea499c6d0d3fcdbe2b33e3be74565ae8c659a3770
parentfa785163fe3fb41ee42ded5d17eaac9b0a87f160 (diff)
downloadaur-ab3c8fd1b22148fabbfb163e2f2137650ea3a3df.tar.gz
Bug fix
-rw-r--r--prepare18
1 files changed, 9 insertions, 9 deletions
diff --git a/prepare b/prepare
index 782bc444ccd9..44dd18c8b27a 100644
--- a/prepare
+++ b/prepare
@@ -36,9 +36,9 @@ _distro="Arch"
fi
# source versel early if present
- # if [ -e "${_path}"/versel ]; then
- # source "${_path}"/versel
- # fi
+ if [ -e "${_path}"/versel ]; then
+ source "${_path}"/versel
+ fi
if [ -z "$_OPTIPROFILE" ] && [ ! -e "$_path"/cpuschedset ]; then
# Prompt about optimized configurations. Available variable values will overwrite customization.cfg/external config ones.
@@ -52,14 +52,14 @@ _distro="Arch"
fi
# source cpuschedset early if present
- # if [ -e "${_path}"/cpuschedset ]; then
- # source "${_path}"/cpuschedset
- # fi
+ if [ -e "${_path}"/cpuschedset ]; then
+ source "${_path}"/cpuschedset
+ fi
# source compilerset early if present
- # if [ -e "${_path}"/compilerset ]; then
- # source "${_path}"/compilerset
- # fi
+ if [ -e "${_path}"/compilerset ]; then
+ source "${_path}"/compilerset
+ fi
# CPU SCHED selector
if [ -z "$_cpusched" ] && [ ! -e "${_path}"/cpuschedset ]; then