diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2024-02-10 00:17:33 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2024-02-10 00:17:33 +0100 |
commit | 8ae3b3514e85e544ffa8283e05ea9efc333f3e34 (patch) | |
tree | ed5f8fbf38ef3258789d939e6b859a3e86717d71 /root/.bash_aliases | |
parent | oops.wrong.make.prev.commit (diff) | |
download | n-8ae3b3514e85e544ffa8283e05ea9efc333f3e34.tar n-8ae3b3514e85e544ffa8283e05ea9efc333f3e34.tar.gz n-8ae3b3514e85e544ffa8283e05ea9efc333f3e34.tar.bz2 n-8ae3b3514e85e544ffa8283e05ea9efc333f3e34.tar.lz n-8ae3b3514e85e544ffa8283e05ea9efc333f3e34.tar.xz n-8ae3b3514e85e544ffa8283e05ea9efc333f3e34.tar.zst n-8ae3b3514e85e544ffa8283e05ea9efc333f3e34.zip |
Diffstat (limited to 'root/.bash_aliases')
-rw-r--r-- | root/.bash_aliases | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/root/.bash_aliases b/root/.bash_aliases index bbe296d..a7a5a78 100644 --- a/root/.bash_aliases +++ b/root/.bash_aliases @@ -25,7 +25,9 @@ function c () { do grep ^- <<<$arg > /dev/null && fn=$arg done - gcc -g -Wall -Wextra -pedantic -Wformat -Wformat-security -o`rev <<<$arg | cut -d. -f2- | rev` $@ -lm + pedantic=-Wpedantic + [ x$NO_PEDANTIC = x ] && pedantic= + gcc -g -Wall -Wextra $pedantic -Wformat -Wformat-security -o`rev <<<$arg | cut -d. -f2- | rev` $@ -lm } alias pmbootstrap="pmbootstrap --as-root" HISTCONTORL=ignoreboth @@ -83,3 +85,4 @@ function j () { javac `sed 's/\.$/.java/' <<<$1` && java `sed -e s/.java// -e 's/\.$//' <<<$1` } alias gl="git log --graph" +export MPLBACKEND=gtk4agg |