diff options
author | Alexey Neyman <stilor@att.net> | 2018-03-18 14:41:30 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | f45e29c5ca5c50bded67c295fb62e208365cf4d6 (patch) | |
tree | 5e921925a2927efeda12bbfaed1ecb31592cb763 /ct-ng.in | |
parent | bc542408ca3c74e977e4f30d77ae6b9a6f388cbe (diff) | |
download | crosstool-ng-f45e29c5ca5c50bded67c295fb62e208365cf4d6.tar.gz crosstool-ng-f45e29c5ca5c50bded67c295fb62e208365cf4d6.tar.bz2 crosstool-ng-f45e29c5ca5c50bded67c295fb62e208365cf4d6.zip |
Restore --enable-local use
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'ct-ng.in')
-rw-r--r-- | ct-ng.in | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -16,8 +16,15 @@ export CT_TOP_DIR:=$(shell pwd) # Paths and values set by ./configure # Don't bother to change it other than with a new ./configure! +ifeq (@enable_local@,yes) +# automake does not allow to set pkgxxxdir, they are always derived from +# a respective xxxdir. So, for enable-local case, set them directly here. +export CT_LIB_DIR:=$(CT_TOP_DIR) +export CT_LIBEXEC_DIR:=$(CT_TOP_DIR)/kconfig +else export CT_LIB_DIR:=@pkgdatadir@ export CT_LIBEXEC_DIR:=@pkglibexecdir@ +endif export CT_DOC_DIR:=@docdir@ # This is crosstool-NG version string |