Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Ocarina
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
TASTE
Ocarina
Commits
8b08da94
Commit
8b08da94
authored
Feb 27, 2013
by
yoogx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* 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
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
Makefile.common
Makefile.common
+2
-2
src/main/Makefile.am
src/main/Makefile.am
+2
-4
No files found.
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
Markdown
is supported
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