]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_strip
r2026: * dh_strip: Don't run objcopy if the output file already exists.
[debhelper.git] / dh_strip
index e4e06984ac6cfb5b2541893d5b153111f6a8b28b..ef91d65139abaaea6841ce88021502f71bfa7749 100755 (executable)
--- 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;