diff options
author | Bjørn Forsman <bjorn.forsman@gmail.com> | 2017-11-05 10:44:16 +0100 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-11-18 11:32:27 +0900 |
commit | 16f8259ca77d04f95e5ca90be1b1894ed45816c0 (patch) | |
tree | d217baf9c216dd18a815ad066434efd646c70c11 /Documentation/ia64 | |
parent | 2ce079f04d5914dae14fdc8618f804cc0d2a1b8f (diff) | |
download | linux-16f8259ca77d04f95e5ca90be1b1894ed45816c0.tar.gz linux-16f8259ca77d04f95e5ca90be1b1894ed45816c0.tar.bz2 linux-16f8259ca77d04f95e5ca90be1b1894ed45816c0.zip |
kbuild: /bin/pwd -> pwd
Most places use pwd and rely on $PATH lookup. Moving the remaining
absolute path /bin/pwd users over for consistency.
Also, a reason for doing /bin/pwd -> pwd instead of the other way around
is because I believe build systems should make little assumptions on
host filesystem layout. Case in point, we do this kind of patching
already in NixOS.
Ref. commit 028568d84da3cfca49f5f846eeeef01441d70451
("kbuild: revert $(realpath ...) to $(shell cd ... && /bin/pwd)").
Signed-off-by: Bjørn Forsman <bjorn.forsman@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Documentation/ia64')
-rw-r--r-- | Documentation/ia64/xen.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/ia64/xen.txt b/Documentation/ia64/xen.txt index c61a99f7c8bb..a12c74ce2773 100644 --- a/Documentation/ia64/xen.txt +++ b/Documentation/ia64/xen.txt @@ -41,7 +41,7 @@ Getting and Building Xen and Dom0 5. make initrd for Dom0/DomU # make -C linux-2.6.18-xen.hg ARCH=ia64 modules_install \ - O=$(/bin/pwd)/build-linux-2.6.18-xen_ia64 + O=$(pwd)/build-linux-2.6.18-xen_ia64 # mkinitrd -f /boot/efi/efi/redhat/initrd-2.6.18.8-xen.img \ 2.6.18.8-xen --builtin mptspi --builtin mptbase \ --builtin mptscsih --builtin uhci-hcd --builtin ohci-hcd \ |