Added support for binary comparisons.
This commit is contained in:
parent
2099685bad
commit
30ba1dfeaf
2 changed files with 8 additions and 0 deletions
|
@ -153,6 +153,9 @@ stage3: force
|
|||
- mv -f $(STAGESTUFF) stage3
|
||||
- (cd stage3 ; ln -s $(LD_PROG) ld)
|
||||
|
||||
comparison: force
|
||||
for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
|
||||
|
||||
de-stage1: force
|
||||
- (cd stage1 ; mv -f * ..)
|
||||
- rm ld
|
||||
|
|
|
@ -124,6 +124,11 @@ stage3: force
|
|||
-mkdir stage3
|
||||
-mv $(STAGESTUFF) stage3
|
||||
|
||||
against=stage2
|
||||
|
||||
comparison: force
|
||||
for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
|
||||
|
||||
de-stage1: force
|
||||
- (cd stage1 ; mv -f * ..)
|
||||
- rmdir stage1
|
||||
|
|
Loading…
Reference in a new issue