fix profile.conf line endind

This commit is contained in:
fatalerrors
2026-03-10 11:02:31 +01:00
parent 7ca0a6fb88
commit 02a1e25df2

View File

@@ -1,6 +1,6 @@
[system]
# System section is used to set system-wide variables, such as PATH, environment variables, and other
# settings that affect the entire system. It is also a good place to set some global variables that can be used by the profile or its functions, such as the default editor and pager.
# System section is used to set Bash behavior and other system related variables,
# such as the default pager, the terminal type, etc.
# Set bash history
HISTSIZE=50000
HISTIGNORE="&:[bf]g:exit"
@@ -8,7 +8,7 @@ HISTIGNORE="&:[bf]g:exit"
# Set default pager
PAGER=less
# More colors
# Set terminal colors behavior
TERM=xterm-256color
[info]
@@ -17,10 +17,10 @@ DEFAULT_CITY="Toulouse"
[general]
# General section allow to set any variable that can be used by the profile or its functions. It is
# also a good place to set some global variables that can be used by the profile or its functions, such as
# the compilation flags and make options.
# also a good place to set freely global variables for personal use.
# Set some compiling values
CFLAGS="-O2 -pipe -march=native"
CXXFLAGS="$CFLAGS"
MAKEFLAGS='-j12'
PKGSOURCES='/share/src/archives'