diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-04-27 18:39:15 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-04-27 18:39:15 +0200 |
commit | da81679c73d79a64519b50fb40764b8d41fd6fd0 (patch) | |
tree | a207c191b9d78170b9bd7e64452685e51f6311e4 /src | |
parent | 273798099ced21ad739b1ea8fcc387d50d21abf4 (diff) | |
download | ghdl-da81679c73d79a64519b50fb40764b8d41fd6fd0.tar.gz ghdl-da81679c73d79a64519b50fb40764b8d41fd6fd0.tar.bz2 ghdl-da81679c73d79a64519b50fb40764b8d41fd6fd0.zip |
configure: use default_pic instead of default_pie.
Adjust Makefile.in so that libgrt.a is built with pic only when default_pic is
set.
Diffstat (limited to 'src')
-rw-r--r-- | src/ghdldrv/default_paths.ads.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ghdldrv/default_paths.ads.in b/src/ghdldrv/default_paths.ads.in index a20491c3d..ae321011b 100644 --- a/src/ghdldrv/default_paths.ads.in +++ b/src/ghdldrv/default_paths.ads.in @@ -38,5 +38,5 @@ package Default_Paths is "@POST_PROCESSOR@"; Shared_Library_Extension : constant String := "@SOEXT@"; - Default_Pie : constant Boolean := "@default_pie@" = String'("true"); + Default_Pie : constant Boolean := "@default_pic@" = String'("true"); end Default_Paths; |