summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild/linux/dump_app_syms2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/linux/dump_app_syms b/build/linux/dump_app_syms
index 1ebac58..1bbb9bc 100755
--- a/build/linux/dump_app_syms
+++ b/build/linux/dump_app_syms
@@ -31,7 +31,7 @@ if [ $? -ne 0 ]; then
fi
# Dump the symbols from the given binary.
-if [ "$INFILE" -nt "$OUTFILE" ]; then
+if [ ! -e "$OUTFILE" -o "$INFILE" -nt "$OUTFILE" ]; then
"$DUMPSYMS" "$INFILE" > "$OUTFILE"
fi