diff options
author | Yedidyah Bar David <didi@redhat.com> | 2018-01-01 10:15:19 +0200 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2018-01-04 13:01:17 +0100 |
commit | 27187af465becff0a4281c4293dd50b123720fad (patch) | |
tree | 8971df994eb097a51665fb05d9ca710c3f6f42e6 | |
parent | e0be5c99c4a4935418e6f395a2e8a57227ee2a05 (diff) |
Do not install .pdb debug files on the target system
Usually they are not needed, and needlessly take quite a lot of space on
the target system.
Do publish them in the ISO, so that they are easily available if needed.
Change-Id: I6dfa5f5e904ea63513f30f4418e58ad2654cf486
Signed-off-by: Yedidyah Bar David <didi@redhat.com>
Acked-by: Christophe Fergeau <cfergeau@redhat.com>
-rw-r--r-- | win-guest-tools.nsis | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win-guest-tools.nsis b/win-guest-tools.nsis index 19d45a3..1f7ace5 100644 --- a/win-guest-tools.nsis +++ b/win-guest-tools.nsis @@ -125,7 +125,7 @@ Section "install" File "bin/vdagent_x64/vdservice.exe" SetOutPath "$INSTDIR\drivers" - File /r drivers/virtio/ + File /r /x *.pdb drivers/virtio/ Push "vioserial" Push "vioser" |