diff options
author | Torbjorn Granlund <tg@gmplib.org> | 2021-09-14 19:05:51 +0200 |
---|---|---|
committer | Torbjorn Granlund <tg@gmplib.org> | 2021-09-14 19:05:51 +0200 |
commit | b1e742f822c23a186dfffad05c9e9695a1c63a8d (patch) | |
tree | 45d809785e06a7cecca4907807baa370aa9c0f37 /mpn/asm-defs.m4 | |
parent | a0e8d6d90f31b154537b566215156b653c906b95 (diff) | |
download | gmp-b1e742f822c23a186dfffad05c9e9695a1c63a8d.tar.gz |
Remove quotes around PIC_ALWAYS. Reported by George Koehler.
* mpn/asm-defs.m4: Remove quotes around PIC_ALWAYS. Reported by
George Koehler.
Diffstat (limited to 'mpn/asm-defs.m4')
-rw-r--r-- | mpn/asm-defs.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpn/asm-defs.m4 b/mpn/asm-defs.m4 index 7b7e53e41..1f2d9fe37 100644 --- a/mpn/asm-defs.m4 +++ b/mpn/asm-defs.m4 @@ -1051,7 +1051,7 @@ dnl Normally PIC is defined (or not) by libtool, but it doesn't set it on dnl systems which are always PIC. PIC_ALWAYS established in config.m4 dnl identifies these for us. -ifelse(`PIC_ALWAYS',`yes',`define(`PIC')') +ifelse(PIC_ALWAYS,`yes',`define(`PIC')') dnl Various possible defines passed from the Makefile that are to be tested |