mirror of
https://github.com/akatrevorjay/edid-generator.git
synced 2026-01-15 23:50:28 +01:00
failed because version of edid-decode had leading spaces in front of Checksum. added pattern that matches leading spaces
This commit is contained in:
2
Makefile
2
Makefile
@@ -20,7 +20,7 @@ clean:
|
|||||||
|
|
||||||
%.crc: %.bin.nocrc
|
%.crc: %.bin.nocrc
|
||||||
cat $^ | edid-decode \
|
cat $^ | edid-decode \
|
||||||
| sed -ne 's/^Checksum: 0x\w\+ (should be \(0x\w\+\))$$/\1/p' >$@
|
| sed -ne 's/^[ ]*Checksum: 0x\w\+ (should be \(0x\w\+\))$$/\1/p' >$@
|
||||||
|
|
||||||
%.p: %.crc %.S
|
%.p: %.crc %.S
|
||||||
cc -c -DCRC="$$(cat $*.crc)" -o $@ $*.S
|
cc -c -DCRC="$$(cat $*.crc)" -o $@ $*.S
|
||||||
|
|||||||
Reference in New Issue
Block a user