584bc626b6
The libstdc++ directory has no copyright headers, so it was a no-op anyway. The interesting part will be switching libc and libm over to genrules... Test: N/A Change-Id: Iec92562af40c451fdcb4a7468984878ec5dba2ce
7 lines
182 B
Bash
Executable file
7 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR/..
|
|
./libc/tools/generate-NOTICE.py libc libm > libc/NOTICE
|
|
|
|
git diff --exit-code HEAD libc/NOTICE
|
|
exit $?
|