diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-02-05 20:20:13 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-05 20:30:07 +0100 |
commit | 73f4ef48d065c4108de4af52a4dc7d86815b9b05 (patch) | |
tree | 24e12b0f4266ed6125de9393a87d145cf469555f /scp2/inc | |
parent | f504768a96601622f089dc6ee7620df1d014c6fb (diff) |
scp2: stop cargo-culting DONT_OVERWRITE around
There appears to be no usage of this Style in the installer Perl code in
the git history.
Change-Id: I137627505af5c7b33006437e83624b34ca2e3583
Diffstat (limited to 'scp2/inc')
-rwxr-xr-x | scp2/inc/macros.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scp2/inc/macros.inc b/scp2/inc/macros.inc index c70bafd25406..9266bb56e3e7 100755 --- a/scp2/inc/macros.inc +++ b/scp2/inc/macros.inc @@ -226,7 +226,7 @@ End TXT_FILE_BODY; \ Name = STRING(CONCAT2(name,.jar)); \ Dir = gid_Dir_Classes; \ - Styles = (PACKED,DONT_OVERWRITE); \ + Styles = (PACKED); \ End #define URE_JAR_FILE(id,name) \ @@ -549,13 +549,13 @@ End File gid_File_Extra_Gall##id \ Dir = FILELIST_DIR; \ TXT_FILE_BODY; \ - Styles = (FILELIST, WORKSTATION, DONT_OVERWRITE); \ + Styles = (FILELIST, WORKSTATION); \ Name = STRING(CONCAT3(Gallery/,id,.filelist)); \ End \ File gid_File_Extra_GallFiles##id \ Dir = FILELIST_DIR; \ TXT_FILE_BODY; \ - Styles = (FILELIST, WORKSTATION, DONT_OVERWRITE); \ + Styles = (FILELIST, WORKSTATION); \ Name = STRING(CONCAT3(Gallery/Files/,id,.filelist)); \ End |