mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Trivial fix to .gitignore for spl/Makefile
Trivial fix to .gitignore for spl/Makefile According to the gitignore man page: "An optional prefix "!" which negates the pattern; any matching file excluded by a previous pattern will become included again." ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ So the directory exclude "/spl/*" must come before the exception for spl/Makefile otherwise it has no effect. Signed-off-by: Ralph Siemsen <ralphs@netwinder.org> Tested-by: Masahiro Yamada <yamada.m@jp.panasonic.com> [on git v1.7.9.5 / v1.8.3.2]
This commit is contained in:
parent
717ccc1d7f
commit
7e18a1b958
1 changed files with 1 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -47,8 +47,8 @@
|
||||||
/errlog
|
/errlog
|
||||||
/reloc_off
|
/reloc_off
|
||||||
|
|
||||||
!/spl/Makefile
|
|
||||||
/spl/*
|
/spl/*
|
||||||
|
!/spl/Makefile
|
||||||
/tpl/
|
/tpl/
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue