Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
package-helpers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
trisquel
package-helpers
Merge requests
!1134
debian-installer: update ld permissions patch.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
debian-installer: update ld permissions patch.
Ark74/package-helpers:fix_ld_d-i_11.0
into
aramo
Overview
2
Commits
2
Changes
2
Merged
Luis Guzmán
requested to merge
Ark74/package-helpers:fix_ld_d-i_11.0
into
aramo
1 year ago
Overview
2
Commits
2
Changes
2
Expand
1
0
Merge request reports
Compare
aramo
version 1
c48f9568
1 year ago
aramo (base)
and
latest version
latest version
a5051a44
2 commits,
1 year ago
version 1
c48f9568
1 commit,
1 year ago
2 files
+
11
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
helpers/DATA/debian-installer/chmod_755_ld-linux.patch
→
helpers/DATA/debian-installer/chmod_755_ld-linux
2
.patch
+
9
−
4
Options
--- a/build/Makefile 2023-05-17 02:42:44.707584584 -0600
+++ b/build/Makefile 2023-05-17 02:44:14.563930750 -0600
@@ -440,6 +440,9 @@
diff --git a/build/Makefile b/build/Makefile
index c073a32..cace03d 100644
--- a/build/Makefile
+++ b/build/Makefile
@@ -431,6 +431,12 @@
endif
ifeq ($(DEB_HOST_ARCH_OS),linux)
ifdef KERNELVERSION
+ifeq ($(DEB_HOST_ARCH),
amd64
)
+if
n
eq ($(DEB_HOST_ARCH),
ppc64el
)
+ chmod 755 $(TREE)/lib/$(DEB_HOST_MULTIARCH)/ld-linux*
+endif
+ifeq ($(DEB_HOST_ARCH),ppc64el)
+ chmod 755 $(TREE)/lib/$(DEB_HOST_MULTIARCH)/ld*.so*
+endif
# Set up modules.dep, ensure there is at least one standard dir (kernel
# in this case), so depmod will use its prune list for archs with no
Loading