Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
Ocarina
Commits
8b08da94
Commit
8b08da94
authored
Feb 27, 2013
by
yoogx
Browse files
* Adjust shell script for the installation of libraries,
follow-up to the previous commit on the same subject
parent
b285ef2c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.common
View file @
8b08da94
...
...
@@ -60,13 +60,13 @@ install-ada-libs:
for
f
in
$(ADA_SPECS)
$(ADA_BODIES)
;
do
\
$(INSTALL)
-m
444
$$
f
$(DESTDIR)$(adadir)
;
\
done
if
[
"
$
(ls -A libs)"
]
;
then
\
if
[
"
$(
shell
ls -A libs
)
"
]
;
then
\
for
f
in
libs/
*
.ali
;
do
\
$(INSTALL)
-m
444
$$
f
$(DESTDIR)$(alidir)
;
\
done
\
fi
$(INSTALL)
-d
$(DESTDIR)$(libdir)
if
[
"
$
(ls -A libs/lib*)"
]
;
then
\
if
[
"
$(
shell
ls -A libs/lib*
)
"
]
;
then
\
for
f
in
libs/lib
*
;
do
\
$(INSTALL)
-m
444
$$
f
$(DESTDIR)$(libdir)
;
\
done
\
...
...
src/main/Makefile.am
View file @
8b08da94
...
...
@@ -18,13 +18,11 @@ install-data-local: install-ada-libs
for
f
in
$(ADA_SPECS)
$(ADA_BODIES)
;
do
\
$(INSTALL)
-m
444
$$
f
$(DESTDIR)$(adadir)
;
\
done
if
[
"
$
(ls -A libs)"
]
;
then
\
for
f
in
objects/
*
.ali
;
do
\
$(INSTALL)
-m
444
$$
f
$(DESTDIR)$(alidir)
;
\
done
\
fi
done
$(INSTALL)
-d
$(DESTDIR)$(libdir)
if
[
"
$
(ls -A libs/lib*)"
]
;
then
\
if
[
"
$(
shell
ls -A libs/lib*
)
"
]
;
then
\
for
f
in
libs/lib
*
;
do
\
$(INSTALL)
-m
444
$$
f
$(DESTDIR)$(libdir)
;
\
done
\
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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