Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7242
b: refs/heads/master
c: 2a69147
h: refs/heads/master
v: v3
  • Loading branch information
Sam Ravnborg committed Jul 25, 2005
1 parent afad6cc commit 44ae589
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8ec4b4ff1c89bb280e662b84eba503ca44abe836
refs/heads/master: 2a691470345a0024dd7ffaf47ad3d0f5f4f41924
2 changes: 1 addition & 1 deletion trunk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ cc-version = $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-version.sh \
MAKEFLAGS += --include-dir=$(srctree)

# We need some generic definitions
include scripts/Kbuild.include
include $(srctree)/scripts/Kbuild.include

# For maximum performance (+ possibly random breakage, uncomment
# the following)
Expand Down
4 changes: 3 additions & 1 deletion trunk/scripts/Makefile.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ __build:
# Read .config if it exist, otherwise ignore
-include .config

include $(if $(wildcard $(obj)/Kbuild), $(obj)/Kbuild, $(obj)/Makefile)
# The filename Kbuild has precedence over Makefile
include $(if $(wildcard $(srctree)/$(src)/Kbuild), \
$(srctree)/$(src)/Kbuild, $(srctree)/$(src)/Makefile)

include scripts/Kbuild.include
include scripts/Makefile.lib
Expand Down
4 changes: 3 additions & 1 deletion trunk/scripts/Makefile.clean
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ src := $(obj)
.PHONY: __clean
__clean:

include $(if $(wildcard $(obj)/Kbuild), $(obj)/Kbuild, $(obj)/Makefile)
# The filename Kbuild has precedence over Makefile
include $(if $(wildcard $(srctree)/$(src)/Kbuild), \
$(srctree)/$(src)/Kbuild, $(srctree)/$(src)/Makefile)

# Figure out what we need to build from the various variables
# ==========================================================================
Expand Down

0 comments on commit 44ae589

Please sign in to comment.