aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/kbuild/makefiles.txt
diff options
context:
space:
mode:
authorSam Ravnborg <sam@neptun.(none)>2007-09-30 14:08:25 -0400
committerSam Ravnborg <sam@neptun.(none)>2007-10-12 15:20:32 -0400
commita9af33052cee365ee17c03c167b61780a08f4acd (patch)
treed266a80a02d73c4b385c896ded1477252a07bbcf /Documentation/kbuild/makefiles.txt
parent0b35786d77ba4037f181982cc8ca20a7a3bf0fd2 (diff)
kbuild: fix documentation in makefiles.txt
Small error had sneaked in with respect to use of LDFLAGS_$@. LDFLAGS_$@ is not valid in normal kbuild files so do not say so. Fix a reference bug too. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Documentation/kbuild/makefiles.txt')
-rw-r--r--Documentation/kbuild/makefiles.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt
index e08ef8759a07..3c7ea39fc098 100644
--- a/Documentation/kbuild/makefiles.txt
+++ b/Documentation/kbuild/makefiles.txt
@@ -780,8 +780,8 @@ When kbuild executes, the following steps are followed (roughly):
780 Example: 780 Example:
781 #arch/s390/Makefile 781 #arch/s390/Makefile
782 LDFLAGS := -m elf_s390 782 LDFLAGS := -m elf_s390
783 Note: EXTRA_LDFLAGS and LDFLAGS_$@ can be used to further customise 783 Note: EXTRA_LDFLAGS can be used to further customise
784 the flags used. See chapter 7. 784 the flags used. See chapter 3.7.
785 785
786 LDFLAGS_MODULE Options for $(LD) when linking modules 786 LDFLAGS_MODULE Options for $(LD) when linking modules
787 787