Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
chromebrew
Commits
857721be
Commit
857721be
authored
Apr 13, 2018
by
lovedheart
Committed by
Ed Reel
Apr 13, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[crew] remove *.la during compilation (#2237)
parent
87b45204
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
crew
crew
+6
-6
No files found.
crew
View file @
857721be
...
...
@@ -439,12 +439,12 @@ def build_and_preconfigure (target_dir)
#
Remove
/
usr
/
local
/
lib64
/*.
la
to
resolve
any
"can not find /usr/local/*.la"
compile
errors
when
building
the
packages
(
only
needed
for
x86_64
).
#
https
://
gnunet
.
org
/
faq
-
la
-
files
#
https
://
stackoverflow
.
com
/
questions
/
42963653
/
libquadmath
-
la
-
is
-
not
-
a
-
valid
-
libtool
-
archive
-
when
-
configuring
-
openmpi
-
with
-
g
if
ARCH
==
'x86_64'
if
@
opt_verbose
then
system
"rm -rvf #{CREW_LIB_PREFIX}/*.la"
else
system
"rm -rf #{CREW_LIB_PREFIX}/*.la"
end
#
Since
pkgconfig
is
recompiled
,
the
*.
la
problem
appear
also
for
i686
and
armv7l
.
Remove
any
.
la
files
to
resolve
it
.
if
@
opt_verbose
then
system
"rm -rvf #{CREW_LIB_PREFIX}/*.la"
else
system
"rm -rf #{CREW_LIB_PREFIX}/*.la"
end
@
pkg
.
in_build
=
true
@
pkg
.
preinstall
...
...
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