~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to scripts/Kbuild.include

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Upstream Kernel Changes
  • Date: 2012-03-27 17:01:30 UTC
  • Revision ID: package-import@ubuntu.com-20120327170130-qrvi60snnxty6ibi
Tags: 3.2.0-1411.14
[ Paolo Pisati ]

* Revert to Ubuntu-3.2.0-1409.12 until we figure out what's wrong with hdmi
  - LP: #963512

[ Upstream Kernel Changes ]

* Revert "Reapply upleveled PMU interrupt patch"
* KBuild: Allow scripts/* to be cross compiled
* LINARO: Use KBUILD_SCRIPTROOT to cross build scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
222
222
        $(echo-cmd) $(cmd_$(1));                                             \
223
223
        echo 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd)
224
224
 
 
225
ifeq ($(KBUILD_SCRIPTROOT),)
 
226
KBUILD_SCRIPTROOT=.
 
227
endif
 
228
 
225
229
# Execute the command and also postprocess generated .d dependencies file.
226
230
if_changed_dep = $(if $(strip $(any-prereq) $(arg-check) ),                  \
227
231
        @set -e;                                                             \
228
232
        $(echo-cmd) $(cmd_$(1));                                             \
229
 
        scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp;\
 
233
        $(KBUILD_SCRIPTROOT)/scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp;\
230
234
        rm -f $(depfile);                                                    \
231
235
        mv -f $(dot-target).tmp $(dot-target).cmd)
232
236