VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Randy Dunlap <rdunlap@infradead.org> 2021-09-07 20:00:59 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2021-09-08 11:50:28 -0700 commit: b285437d1d929785a5bef3603da78d2cd5341893 parent: 560a870570287aeb0e77825ae0fa1aba47031cf9
Commit Summary:
scripts: check_extable: fix typo in user error message
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/scripts/check_extable.sh b/scripts/check_extable.sh
index 93af93c7b346..4b380564cf74 100755
--- a/scripts/check_extable.sh
+++ b/scripts/check_extable.sh
@@ -4,7 +4,7 @@
 
 obj=$1
 
-file ${obj} | grep -q ELF || (echo "${obj} is not and ELF file." 1>&2 ; exit 0)
+file ${obj} | grep -q ELF || (echo "${obj} is not an ELF file." 1>&2 ; exit 0)
 
 # Bail out early if there isn't an __ex_table section in this object file.
 objdump -hj __ex_table ${obj} 2> /dev/null > /dev/null