Skip to content

Commit c13daa7

Browse files
committed
CI win make bundle: remove unused commands
Remove commands that actually do nothing because uv-qt.exe is installed by make install and the contents of bin/ subdirectory is not copied "as is" as the command seem to imply. + use $(TARGET) in Makefile instead of bin/uv (which will be bin/uv.exe in MSW but obviously it worked even without the extension)
1 parent 9c9b28e commit c13daa7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ccpp.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,6 @@ jobs:
347347
run: make check
348348
- name: make bundle
349349
run: |
350-
cp gui/QT/uv-qt.exe bin
351-
rm bin/run_tests.exe
352350
export DESTDIR=build/UltraGrid-$VERSION-win64
353351
make install
354352
for exe in "$DESTDIR"/*.exe; do

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ osx-gui-dmg:
673673

674674
install: all
675675
$(INSTALL) -d -m 755 $(DESTDIR)$(bindir)
676-
$(INSTALL) -m 755 bin/uv $(REFLECTOR_TARGET) $(DESTDIR)$(bindir)
676+
$(INSTALL) -m 755 $(TARGET) $(REFLECTOR_TARGET) $(DESTDIR)$(bindir)
677677
$(INSTALL) -m 755 $(srcdir)/data/template/bin/* $(DESTDIR)$(bindir)
678678
if [ -f "$(GUI_TARGET)" ]; then \
679679
$(INSTALL) -m 755 $(GUI_TARGET) $(DESTDIR)$(bindir);\

0 commit comments

Comments
 (0)