mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
add explicit chmod for good measure
This commit is contained in:
parent
28fb110dd3
commit
4e2673ca2c
1 changed files with 2 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ import os
|
||||||
import re
|
import re
|
||||||
import shutil
|
import shutil
|
||||||
import waflib.extras.autowaf as autowaf
|
import waflib.extras.autowaf as autowaf
|
||||||
from waflib import Options
|
import waflib.Options as Options, waflib.Utils as Utils
|
||||||
|
|
||||||
# Mandatory variables
|
# Mandatory variables
|
||||||
top = '.'
|
top = '.'
|
||||||
|
|
@ -31,6 +31,7 @@ def build(bld):
|
||||||
source = i + '.in',
|
source = i + '.in',
|
||||||
target = '../../LV2/%s/%s' % (bundle, i),
|
target = '../../LV2/%s/%s' % (bundle, i),
|
||||||
install_path = '${LV2DIR}/%s' % bundle,
|
install_path = '${LV2DIR}/%s' % bundle,
|
||||||
|
chmod = Utils.O644,
|
||||||
LIB_EXT = module_ext)
|
LIB_EXT = module_ext)
|
||||||
|
|
||||||
# Build plugin library
|
# Build plugin library
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue