r45368 - /packages/lapack/trunk/debian/rules

sylvestre at users.alioth.debian.org sylvestre at users.alioth.debian.org
Sat Sep 29 16:54:32 UTC 2012


Author: sylvestre
Date: Sat Sep 29 16:54:32 2012
New Revision: 45368

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=45368
Log:
Fix a wrong declaration which was failing the whole builds

Modified:
    packages/lapack/trunk/debian/rules

Modified: packages/lapack/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/lapack/trunk/debian/rules?rev=45368&op=diff
==============================================================================
--- packages/lapack/trunk/debian/rules (original)
+++ packages/lapack/trunk/debian/rules Sat Sep 29 16:54:32 2012
@@ -111,7 +111,7 @@
 	cd lapacke; \
 	mkdir -p tmp; \
 	cd tmp && ar x ../$< && cd -; \
-	$(GCC) -shared -Wl,-soname=liblapacke.so.$(SO) -o $@ tmp/*.o  -L.. -lblas -llapack $(shell dpkg-buildflags --get LDFLAGS); \
+	$(CC) -shared -Wl,-soname=liblapacke.so.$(SO) -o $@ tmp/*.o  -L.. -lblas -llapack $(shell dpkg-buildflags --get LDFLAGS); \
 	rm -rf tmp
 
 liblapacke.so.$(SO): liblapacke.so.$(VERS)




More information about the debian-science-commits mailing list