diff options
author | Alexey Neyman <stilor@att.net> | 2016-12-13 22:20:52 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-01-10 18:29:14 -0800 |
commit | dcb438a9dcd2a795314ac91b825647a658a065dc (patch) | |
tree | 9fb634b483f88dfad1fe0b21d9c050ffe5514928 /ct-ng.in | |
parent | eff79ab71433cfd2a9f40b4cb3de580f0e2de17f (diff) | |
download | crosstool-ng-dcb438a9dcd2a795314ac91b825647a658a065dc.tar.gz crosstool-ng-dcb438a9dcd2a795314ac91b825647a658a065dc.tar.bz2 crosstool-ng-dcb438a9dcd2a795314ac91b825647a658a065dc.zip |
Fix ct-ng show-config.
If configured with --enable-local, CT_NG is exported as plain 'ct-ng'
without any path. showSamples.sh then fails to invoke ct-ng (as current
directory is not in $PATH).
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'ct-ng.in')
-rw-r--r-- | ct-ng.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ MAKEFLAGS += --no-print-directory --no-builtin-rules .NOTPARALLEL: # This is where ct-ng is: -export CT_NG:=$(lastword $(MAKEFILE_LIST)) +export CT_NG:=$(abspath $(lastword $(MAKEFILE_LIST))) # and this is where we're working in: export CT_TOP_DIR:=$(shell pwd) |