diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-11-30 17:29:01 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-11-30 17:31:56 +0100 |
commit | 6b1dd45bf4c825fe545e7ca278de21e418a6f994 (patch) | |
tree | dd77d554b1a4b628a37ba76b5aebf50518f8f1ee | |
parent | 6f8597291373a915ddcb9031000442bb1569bf76 (diff) | |
download | buildroot-novena-6b1dd45bf4c825fe545e7ca278de21e418a6f994.tar.gz buildroot-novena-6b1dd45bf4c825fe545e7ca278de21e418a6f994.zip |
Makefile: use absolute path for TOPDIR
Reported by mr_claus on IRC.
This ensure DL_DIR is always an absolute path, like it was before the
build dir reorganization - Fixes vim (patch) build.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -2,7 +2,7 @@ Additional fixes and cleanups. - Updated/fixed packages: alsamixergui, fltk, ncurses + Updated/fixed packages: alsamixergui, fltk, ncurses, vim Issues resolved (http://bugs.uclibc.org): @@ -22,7 +22,8 @@ # Just run 'make menuconfig', configure stuff, then run 'make'. # You shouldn't need to mess with anything beyond this point... #-------------------------------------------------------------- -TOPDIR:=. +# absolute path +TOPDIR:=$(shell pwd) CONFIG_CONFIG_IN=Config.in CONFIG_DEFCONFIG=.defconfig CONFIG=package/config |