diff options
author | Bernhard Voelker <mail@bernhard-voelker.de> | 2013-01-11 09:14:22 +0100 |
---|---|---|
committer | Bernhard Voelker <mail@bernhard-voelker.de> | 2013-01-20 23:45:37 +0100 |
commit | 165343bca68283d8daa5406b8a5701ff21036f1a (patch) | |
tree | edb17896d911705ed7db162a6f55325013807070 | |
parent | e27bfd101da5d208c9fad6f6d0c94f4d7322fade (diff) | |
download | coreutils-165343bca68283d8daa5406b8a5701ff21036f1a.tar.xz |
maint: fix alphabetical order in .gitignore
Since commit v8.20-67-g0f525b6, .gitignore sometimes
showed up as changed because the entries "*.gcda" and
"*.gcno" had not been in alphabetical order.
* .gitignore: Exchange the entries "*.gcda" and "*.gcno".
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 67f428c0b..f0d6d87c9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,8 @@ *.I[12] *.[EIOX] *.bak -*.gcno *.gcda +*.gcno *.o */.deps/ *~ |