summaryrefslogtreecommitdiff
path: root/dh_strip
diff options
context:
space:
mode:
authorjoeyh <joeyh>2007-09-13 19:48:50 +0000
committerjoeyh <joeyh>2007-09-13 19:48:50 +0000
commit09bf5892fcc47c94d77c8457b533643ec3b58ef8 (patch)
treebf4bd20d7f162e91118a52b196e8092a087e4326 /dh_strip
parent2edd22215ace8da90de46142b3b38896ee0aed72 (diff)
r2026: * dh_strip: Don't run objcopy if the output file already exists.
Closes: #380314
Diffstat (limited to 'dh_strip')
-rwxr-xr-xdh_strip4
1 files changed, 3 insertions, 1 deletions
diff --git a/dh_strip b/dh_strip
index e4e06984..ef91d651 100755
--- a/dh_strip
+++ b/dh_strip
@@ -156,7 +156,9 @@ sub make_debug {
if (! -d $debug_dir) {
doit("install", "-d", $debug_dir);
}
- doit("objcopy", "--only-keep-debug", $file, $debug_path);
+ if (! -e $debug_path) {
+ doit("objcopy", "--only-keep-debug", $file, $debug_path);
+ }
# No reason for this to be executable.
doit("chmod", 644, $debug_path);
return $debug_path;