Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ishan Kumar Kaler
purr-data
Commits
41299dc7
Commit
41299dc7
authored
Apr 02, 2021
by
Albert Gräf
Browse files
tar_em_up.sh: Add some extra checks to prevent build failures on some architectures.
parent
adbdc1b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
l2ork_addons/tar_em_up.sh
View file @
41299dc7
...
...
@@ -378,10 +378,17 @@ then
if
[
$inno
-eq
0
-a
$dmg
-eq
0
-a
$light
-eq
0
]
;
then
cd
raspberry_pi
./makeall.sh
# these don't seem to be built on some newer ARM architectures
# for some reason, so check to make sure that we actually have
# them before trying to install
if
[
-f
disis_gpio/disis_gpio.pd_linux
]
;
then
cp
-f
disis_gpio/disis_gpio.pd_linux ../../packages/linux_make/build
$inst_dir
/lib/pd-l2ork/extra
cp
-f
disis_gpio/disis_gpio-help.pd ../../packages/linux_make/build
$inst_dir
/lib/pd-l2ork/extra
fi
if
[
-f
disis_spi/disis_spi.pd_linux
]
;
then
cp
-f
disis_spi/disis_spi.pd_linux ../../packages/linux_make/build
$inst_dir
/lib/pd-l2ork/extra
cp
-f
disis_spi/disis_spi-help.pd ../../packages/linux_make/build
$inst_dir
/lib/pd-l2ork/extra
fi
cd
../
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment