Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Olm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
Olm
Commits
5a9fdd85
Commit
5a9fdd85
authored
May 15, 2020
by
Matthew Hodgson
Browse files
Options
Downloads
Patches
Plain Diff
remove overzealous -D param to install which breaks build on macOS
parent
05a7af8d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+3
-3
3 additions, 3 deletions
Makefile
with
3 additions
and
3 deletions
Makefile
+
3
−
3
View file @
5a9fdd85
...
...
@@ -238,19 +238,19 @@ all: test js lib debug doc
install-headers
:
$(PUBLIC_HEADERS)
test
-d
$(
DESTDIR
)$(
PREFIX
)
/include/olm
||
$(
call
mkdir
,
$(
DESTDIR
)$(
PREFIX
)
/include/olm
)
install
-Dm644
$(
PUBLIC_HEADERS
)
$(
DESTDIR
)$(
PREFIX
)
/include/olm/
install
$(
PUBLIC_HEADERS
)
$(
DESTDIR
)$(
PREFIX
)
/include/olm/
.PHONY
:
install-headers
install-debug
:
debug install-headers
test
-d
$(
DESTDIR
)$(
PREFIX
)
/lib
||
$(
call
mkdir
,
$(
DESTDIR
)$(
PREFIX
)
/lib
)
install
-Dm755
$(
DEBUG_TARGET
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm_debug.
$(
SO
)
.
$(
VERSION
)
install
$(
DEBUG_TARGET
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm_debug.
$(
SO
)
.
$(
VERSION
)
ln
-sf
libolm_debug.
$(
SO
)
.
$(
VERSION
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm_debug.
$(
SO
)
.
$(
MAJOR
)
ln
-sf
libolm_debug.
$(
SO
)
.
$(
VERSION
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm_debug.
$(
SO
)
.PHONY
:
install-debug
install
:
lib install-headers
test
-d
$(
DESTDIR
)$(
PREFIX
)
/lib
||
$(
call
mkdir
,
$(
DESTDIR
)$(
PREFIX
)
/lib
)
install
-Dm755
$(
RELEASE_TARGET
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm.
$(
SO
)
.
$(
VERSION
)
install
$(
RELEASE_TARGET
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm.
$(
SO
)
.
$(
VERSION
)
ln
-sf
libolm.
$(
SO
)
.
$(
VERSION
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm.
$(
SO
)
.
$(
MAJOR
)
ln
-sf
libolm.
$(
SO
)
.
$(
VERSION
)
$(
DESTDIR
)$(
PREFIX
)
/lib/libolm.
$(
SO
)
.PHONY
:
install
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
sign in
to comment