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
nexedi
chromebrew
Commits
d7be84bd
Commit
d7be84bd
authored
Apr 18, 2018
by
Chris Thurber
Committed by
GitHub
Apr 18, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2264 from uberhacker/remove-la-files-from-metadata
Move *.la file removal to prepare_package function
parents
cb2e9476
e959b9c3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
crew
crew
+9
-10
No files found.
crew
View file @
d7be84bd
...
...
@@ -436,16 +436,6 @@ def build_and_preconfigure (target_dir)
Dir
.
chdir
target_dir
do
puts
"Building from source, this may take a while..."
#
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
#
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
@
pkg
.
patch
...
...
@@ -491,6 +481,15 @@ def prepare_package (destdir)
compress_doc
"#{destdir}#{CREW_PREFIX}/share/man"
compress_doc
"#{destdir}#{CREW_PREFIX}/share/info"
#
Remove
/
usr
/
local
/
lib
(
64
)/*.
la
to
resolve
any
"can not find /usr/local/lib(64)/*.la"
compile
errors
when
building
the
packages
.
#
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
@
opt_verbose
then
system
"rm -rvf #{destdir}#{CREW_LIB_PREFIX}/*.la"
else
system
"rm -rf #{destdir}#{CREW_LIB_PREFIX}/*.la"
end
#
create
directory
list
system
"find . -type f > ../filelist"
system
"find . -type l >> ../filelist"
...
...
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