Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Johannes Rudolph
lede-mikrotik
Commits
1c9fe80e
Commit
1c9fe80e
authored
18 years ago
by
Felix Fietkau
Browse files
Options
Downloads
Patches
Plain Diff
fix pesky kmod-* ipkg install bug
SVN-Revision: 5639
parent
9b6e2862
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/kernel.mk
+1
-1
1 addition, 1 deletion
include/kernel.mk
include/package.mk
+2
-2
2 additions, 2 deletions
include/package.mk
with
3 additions
and
3 deletions
include/kernel.mk
+
1
−
1
View file @
1c9fe80e
...
...
@@ -88,7 +88,7 @@ define KernelPackage
CATEGORY
:=
Kernel modules
DEFAULT
:=
$(
KMOD_DEFAULT
)
DESCRIPTION
:=
$(
DESCRIPTION
)
EXTRA_DEPENDS
:=
'
kernel (=
$(
LINUX_VERSION
)
-
$(
BOARD
)
-
$(
LINUX_RELEASE
)
)
'
EXTRA_DEPENDS
:=
kernel
(=
$(
LINUX_VERSION
)
-
$(
BOARD
)
-
$(
LINUX_RELEASE
)
)
$(
call
KernelPackage/
$(
1
))
$(
call
KernelPackage/
$(
1
)
/
$(
KERNEL
))
$(
call
KernelPackage/
$(
1
)
/
$(
BOARD
)
-
$(
KERNEL
))
...
...
This diff is collapsed.
Click to expand it.
include/package.mk
+
2
−
2
View file @
1c9fe80e
...
...
@@ -208,11 +208,11 @@ define BuildPackage
echo
"Package:
$(
1
)
"
>
$$(
IDIR_
$(
1
))
/CONTROL/control
echo
"Version:
$(
VERSION
)
"
>>
$$(
IDIR_
$(
1
))
/CONTROL/control
(
\
DEPENDS
=
;
\
DEPENDS
=
'
$(
EXTRA_DEPENDS
)
'
;
\
for
depend
in
$$(
filter-out @%,
$$(
IDEPEND_
$(
1
)));
do
\
DEPENDS
=
$$
$${
DEPENDS:+
$$$$
DEPENDS,
}
$$
$${
depend##+
};
\
done
;
\
echo
"Depends:
$(
EXTRA_DEPENDS
)
$$$$
DEPENDS"
>>
$$(
IDIR_
$(
1
))
/CONTROL/control
;
\
echo
"Depends:
$$$$
DEPENDS"
>>
$$(
IDIR_
$(
1
))
/CONTROL/control
;
\
)
echo
"Source:
$(
SOURCE
)
"
>>
$$(
IDIR_
$(
1
))
/CONTROL/control
echo
"Section:
$(
SECTION
)
"
>>
$$(
IDIR_
$(
1
))
/CONTROL/control
...
...
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
register
or
sign in
to comment