Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
linux
Commits
eeb059e0
Commit
eeb059e0
authored
Feb 07, 2006
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-bugfix
parents
c03296a8
8c7f75d3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
9 deletions
+16
-9
Makefile
Makefile
+1
-1
arch/cris/Makefile
arch/cris/Makefile
+1
-1
scripts/kconfig/lxdialog/Makefile
scripts/kconfig/lxdialog/Makefile
+5
-2
scripts/kconfig/lxdialog/check-lxdialog.sh
scripts/kconfig/lxdialog/check-lxdialog.sh
+9
-5
No files found.
Makefile
View file @
eeb059e0
...
...
@@ -442,7 +442,7 @@ export KBUILD_DEFCONFIG
config %config
:
scripts_basic outputmakefile FORCE
$(Q)
mkdir
-p
include/linux
$(Q)$(MAKE)
$(build)
=
scripts/kconfig
$@
$(Q)$(MAKE)
.kernelrelease
$(Q)$(MAKE)
-C
$(srctree)
KBUILD_SRC
=
.kernelrelease
else
# ===========================================================================
...
...
arch/cris/Makefile
View file @
eeb059e0
...
...
@@ -119,7 +119,7 @@ $(SRC_ARCH)/.links:
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/lib
$(SRC_ARCH)
/lib
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
$(SRC_ARCH)
/arch
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/vmlinux.lds.S
$(SRC_ARCH)
/kernel/vmlinux.lds.S
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/asm-offsets.c
$(SRC_ARCH)
/kernel/asm-offsets.c
@
ln
-sfn
$(SRC_ARCH)
/
$(SARCH)
/
kernel/
asm-offsets.c
$(SRC_ARCH)
/kernel/asm-offsets.c
@
touch
$@
# Create link to sub arch includes
...
...
scripts/kconfig/lxdialog/Makefile
View file @
eeb059e0
...
...
@@ -2,8 +2,11 @@
#
check-lxdialog
:=
$(srctree)
/
$(src)
/check-lxdialog.sh
HOST_EXTRACFLAGS
:=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ccflags
)
HOST_LOADLIBES
:=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ldflags
$(HOSTCC)
)
# Use reursively expanded variables so we do not call gcc unless
# we really need to do so. (Do not call gcc as part of make mrproper)
HOST_EXTRACFLAGS
=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ccflags
)
HOST_LOADLIBES
=
$(
shell
$(CONFIG_SHELL)
$
(
check-lxdialog
)
-ldflags
$(HOSTCC)
)
HOST_EXTRACFLAGS
+=
-DLOCALE
...
...
scripts/kconfig/lxdialog/check-lxdialog.sh
View file @
eeb059e0
...
...
@@ -4,17 +4,17 @@
# What library to link
ldflags
()
{
echo
"main() {}"
|
$cc
-lncursesw
-xc
-
-o
/dev/null 2> /dev/null
$cc
-print-file-name
=
libncursesw.so |
grep
-q
/
if
[
$?
-eq
0
]
;
then
echo
'-lncursesw'
exit
fi
echo
"main() {}"
|
$cc
-lncurses
-xc
-
-o
/dev/null 2> /dev/null
$cc
-print-file-name
=
libncurses.so |
grep
-q
/
if
[
$?
-eq
0
]
;
then
echo
'-lncurses'
exit
fi
echo
"main() {}"
|
$cc
-lcurses
-xc
-
-o
/dev/null 2> /dev/null
$cc
-print-file-name
=
libcurses.so |
grep
-q
/
if
[
$?
-eq
0
]
;
then
echo
'-lcurses'
exit
...
...
@@ -36,10 +36,13 @@ ccflags()
fi
}
compiler
=
""
# Temp file, try to clean up after us
tmp
=
.lxdialog.tmp
trap
"rm -f
$tmp
"
0 1 2 3 15
# Check if we can link to ncurses
check
()
{
echo
"main() {}"
|
$cc
-xc
-
-o
/dev/null
2> /dev/null
echo
"main() {}"
|
$cc
-xc
-
-o
$tmp
2> /dev/null
if
[
$?
!=
0
]
;
then
echo
" *** Unable to find the ncurses libraries."
1>&2
echo
" *** make menuconfig require the ncurses libraries"
1>&2
...
...
@@ -59,6 +62,7 @@ if [ $# == 0 ]; then
exit
1
fi
cc
=
""
case
"
$1
"
in
"-check"
)
shift
...
...
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