8680dab71d
Thu Mar 21 2002 Trond Eivind Glomsrød <teg@redhat.com> - 1.1.1 bugfix release - Stop the gsl-config script from printing -I/usr/include and -L/usr/lib (#59500)
18 lines
452 B
Diff
18 lines
452 B
Diff
--- gsl-1.1/gsl-config.in.nousr Thu Mar 21 18:47:56 2002
|
|
+++ gsl-1.1/gsl-config.in Thu Mar 21 18:48:36 2002
|
|
@@ -58,12 +58,12 @@
|
|
;;
|
|
|
|
--cflags)
|
|
- echo @GSL_CFLAGS@
|
|
+ echo @GSL_CFLAGS@ | sed "s|-I/usr/include||g"
|
|
;;
|
|
|
|
--libs)
|
|
: ${GSL_CBLAS_LIB=-lgslcblas}
|
|
- echo @GSL_LIBS@ $GSL_CBLAS_LIB -lm
|
|
+ echo @GSL_LIBS@ $GSL_CBLAS_LIB -lm | sed "s|-L/usr/lib||g"
|
|
;;
|
|
|
|
--libs-without-cblas)
|