File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -87,10 +87,10 @@ jobs:
87
87
working-directory : ssr
88
88
run : |
89
89
make
90
- - name : make install
90
+ - name : make install-strip
91
91
working-directory : ssr
92
92
run : |
93
- make install
93
+ make install-strip
94
94
- name : copy dependencies
95
95
working-directory : ssr/windows-installer
96
96
# See https://github.com/msys2/MINGW-packages/issues/5204#issuecomment-1013818547
Original file line number Diff line number Diff line change 124
124
.PHONY : doc
125
125
126
126
if ENABLE_WINDOWS_INSTALLER
127
- nsis : install
127
+ nsis : install-strip
128
128
$(MAKE ) -C data/nsis $@
129
129
else
130
130
nsis :
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ if ENABLE_WINDOWS_INSTALLER
11
11
# this is done after installing the executables
12
12
install-exec-hook :
13
13
for exec in $( SSR_executables) ; do \
14
- windeployqt --no-compiler-runtime $(DESTDIR )$(bindir ) /$$ exec \
15
- ; done
14
+ windeployqt --no-compiler-runtime $(DESTDIR )$(bindir ) /$$ exec ; \
15
+ done
16
16
$(RM ) -r $(DESTDIR )$(bindir ) /styles
17
17
$(RM ) -r $(DESTDIR )$(bindir ) /imageformats
18
18
You can’t perform that action at this time.
0 commit comments