Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit 41ab083

Browse files
authored
Unset executable bits & remove !#shebang (#306)
* Unset executable bit from XML and images I'm not an expert, but those XMLs do not look like any kind of normally executable scripts. And even if they were -- XML syntax does not allow shebangs, as far as standard[1] is concerned. [1]: https://www.w3.org/TR/2008/REC-xml-20081126/#NT-document * Drop unused global var WINEASIO_PREFIX It was mis-formatted anyway. Looks like a copy-paste from wineasio which is broken in the exact same way[1]. [1] https://github.com/wineasio/wineasio/blob/638ce56a7f872e8556b45949f7dfa734f4bd366c/gui/settings.py#L41 * Unset executable bit Unset executable bit from all python sources upon installation
1 parent 9bc418c commit 41ab083

File tree

7 files changed

+1
-3
lines changed

7 files changed

+1
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ install:
159159
install -m 644 resources/scalable/claudia-launcher.svg $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/
160160

161161
# Install main code
162-
install -m 755 src/*.py $(DESTDIR)$(PREFIX)/share/cadence/src/
162+
install -m 644 src/*.py $(DESTDIR)$(PREFIX)/share/cadence/src/
163163

164164
# Install addtional stuff for Cadence
165165
install -m 644 data/pulse2jack/* $(DESTDIR)$(PREFIX)/share/cadence/pulse2jack/

data/icons/claudia-hicolor/16x16/apps/radium.png

100755100644
File mode changed.

data/icons/claudia-hicolor/48x48/apps/radium.png

100755100644
File mode changed.

data/templates/Carla.carxp

100755100644
File mode changed.

data/templates/LMMS.mmp

100755100644
File mode changed.

resources/scalable/orig/cadence-suite_small.svg

100755100644
File mode changed.

src/cadence.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@
113113
"/usr/local/share/applications"
114114
]
115115

116-
WINEASIO_PREFIX = "HKEY_CURRENT_USER\Software\Wine\WineASIO"
117-
118116
# ---------------------------------------------------------------------
119117

120118
global jackClientIdALSA, jackClientIdPulse

0 commit comments

Comments
 (0)