From 9343d45b9fce4197123e09e3cbfa092e86c0b893 Mon Sep 17 00:00:00 2001 From: Packit Date: Sep 21 2020 09:03:27 +0000 Subject: Apply patch gsl-1.10-lib64.patch patch_name: gsl-1.10-lib64.patch present_in_specfile: true --- diff --git a/gsl-config.in b/gsl-config.in index 3f3fa61..5babee0 100755 --- a/gsl-config.in +++ b/gsl-config.in @@ -58,16 +58,16 @@ while test $# -gt 0; do ;; --cflags) - echo @GSL_CFLAGS@ + echo -I$includedir ;; --libs) : ${GSL_CBLAS_LIB=-lgslcblas} - echo @GSL_LIBS@ $GSL_CBLAS_LIB @GSL_LIBM@ + echo -lgsl $GSL_CBLAS_LIB -lm ;; --libs-without-cblas) - echo @GSL_LIBS@ @GSL_LIBM@ + echo -lgsl -lm ;; *) usage diff --git a/gsl-config.in.lib64 b/gsl-config.in.lib64 new file mode 100755 index 0000000..3f3fa61 --- /dev/null +++ b/gsl-config.in.lib64 @@ -0,0 +1,80 @@ +#! /bin/sh + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +includedir=@includedir@ + +usage() +{ + cat <