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
4b35769e
Commit
4b35769e
authored
8 years ago
by
Damian Montero
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #272 from geisesteert/patch-1
Fix package being broken on ARM due to asm error
parents
d32b537a
3924aac2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
packages/unzip.rb
packages/unzip.rb
+5
-1
No files found.
packages/unzip.rb
View file @
4b35769e
...
...
@@ -22,7 +22,11 @@ class Unzip < Package
def
self
.
build
self
.
patch
system
"make -f unix/Makefile generic"
if
ARCH
==
"armv7l"
system
"make -f unix/Makefile linux_noasm"
else
system
"make -f unix/Makefile generic"
end
end
def
self
.
install
...
...
This diff is collapsed.
Click to expand it.
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