Mercurial > mplayer.hg
view tests/refupdate.sh @ 35859:d67d5c8311fe
Enable auto-detection of PIE linking again.
A bug in libbluray (pointer truncated to 32 bit due to
a missing include) caused crashes before, the
bugfix for that hopefully has reached all systems by now.
author | reimar |
---|---|
date | Mon, 11 Mar 2013 20:17:04 +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