removed space after -L and -I in Makefile.in (#974)

Fixes link failure with gcc-4.2:

ld: -L must be immediately followed by a directory path (no space)
This commit is contained in:
Ryan Schmidt 2022-04-01 08:23:57 -05:00 committed by GitHub
parent 661858aee8
commit 00a54b36cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,8 +16,8 @@ PLATOPTS_SPARC64=-mcpu=ultrasparc -pipe -fomit-frame-pointer -ffast-math -finlin
export CFLAGS export CFLAGS
export LDFLAGS export LDFLAGS
CFLAGS=@CFLAGS@ -I ./include CFLAGS=@CFLAGS@ -I./include
LDFLAGS=@LDFLAGS@ -L . LDFLAGS=@LDFLAGS@ -L.
OPENSSL_CFLAGS=$(shell pkg-config openssl; echo $$?) OPENSSL_CFLAGS=$(shell pkg-config openssl; echo $$?)
ifeq ($(OPENSSL_CFLAGS), 0) ifeq ($(OPENSSL_CFLAGS), 0)