mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
Fix travis build
This commit is contained in:
parent
e83dae2c9a
commit
b64fd5ad11
@ -20,8 +20,9 @@ script:
|
||||
- mkdir build ; cd build
|
||||
- qmake PREFIX=/usr APPIMAGE=1 ../src
|
||||
- make -j4
|
||||
- sudo make INSTALL_ROOT=appdir install ; sudo chown -R $USER appdir
|
||||
- mkdir -p appdir/usr/share/radare2 ; cp -Lr /usr/share/radare2/*-git/ appdir/usr/share/radare2/ ; find appdir/
|
||||
- mkdir appdir
|
||||
- sudo make INSTALL_ROOT=appdir install && sudo chown -R $USER appdir
|
||||
- mkdir -p appdir/usr/share/radare2 && cp -Lr /usr/share/radare2/*-git/ appdir/usr/share/radare2/ && find appdir/
|
||||
|
||||
after_success:
|
||||
- wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
||||
|
@ -188,7 +188,8 @@ void MainWindow::initUI()
|
||||
if (syntax == "") {
|
||||
break;
|
||||
}
|
||||
QAction* action = new QAction(syntax);
|
||||
QAction* action = new QAction(ui->menuAsm_syntax);
|
||||
action->setText(syntax);
|
||||
action->setCheckable(true);
|
||||
if (syntax == checked) {
|
||||
action->setChecked(true);
|
||||
|
Loading…
Reference in New Issue
Block a user