Mercurial > mplayer.hg
view tests/refupdate.sh @ 35153:95ccce972b4b
Change the order of tested libvorbis ldflags.
This fixes libvorbis linking on some systems.
Tested by Krzysztof Duchnowski.
author | cehoyos |
---|---|
date | Sun, 14 Oct 2012 11:01:35 +0000 |
parents | 6dc79618ec0e |
children |
line wrap: on
line source
#!/bin/sh # updates all changed/new results in ref/ find res -name '*.bad' | while read bad_res ; do ref_file="ref/${bad_res#res/}" ref_file="${ref_file%.bad}" mkdir -p "$(dirname "$ref_file")" cp "$bad_res" "$ref_file" done