mirror of
https://github.com/boostorg/predef.git
synced 2025-07-29 11:37:13 +02:00
Fix repeated path parts in source and include paths because they are
already absolute and don't need to be pwd rooted again. Also update copyright on C source.
This commit is contained in:
@ -30,9 +30,9 @@ local rule check_target ( language : ext )
|
|||||||
local predef_jam
|
local predef_jam
|
||||||
= [ modules.binding $(__name__) ] ;
|
= [ modules.binding $(__name__) ] ;
|
||||||
local source_path
|
local source_path
|
||||||
= [ path.root $(predef_jam:D)/predef_check_as_$(language).$(ext) [ path.pwd ] ] ;
|
= $(predef_jam:D)/predef_check_as_$(language).$(ext) ;
|
||||||
local include_path
|
local include_path
|
||||||
= [ path.root $(predef_jam:D)/../include [ path.pwd ] ] ;
|
= $(predef_jam:D)/../include ;
|
||||||
_check_exe_($(language)) = [
|
_check_exe_($(language)) = [
|
||||||
exe predef_check_as_$(language)
|
exe predef_check_as_$(language)
|
||||||
: $(source_path)
|
: $(source_path)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright Rene Rivera 2011-2012
|
Copyright Rene Rivera 2011-2015
|
||||||
Distributed under the Boost Software License, Version 1.0.
|
Distributed under the Boost Software License, Version 1.0.
|
||||||
(See accompanying file LICENSE_1_0.txt or copy at
|
(See accompanying file LICENSE_1_0.txt or copy at
|
||||||
http://www.boost.org/LICENSE_1_0.txt)
|
http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
Reference in New Issue
Block a user