[Pkg-octave-commit] r1190 - octave/trunk/debian

Rafael Laboissiere rafael at alioth.debian.org
Thu Feb 7 09:56:14 UTC 2008


Author: rafael
Date: 2008-02-07 09:56:14 +0000 (Thu, 07 Feb 2008)
New Revision: 1190

Modified:
   octave/trunk/debian/changelog
   octave/trunk/debian/rules
Log:
Dropped path in compiler variables, such that the package can be built
using gcc-snapshot

Modified: octave/trunk/debian/changelog
===================================================================
--- octave/trunk/debian/changelog	2008-02-06 22:52:57 UTC (rev 1189)
+++ octave/trunk/debian/changelog	2008-02-07 09:56:14 UTC (rev 1190)
@@ -19,6 +19,8 @@
     + The F77_FUNC_ macro in config.h does have the double underscore
       that appeared in version 2.9.12-2+b3 of the octave2.9-headers
       package (closes: #434415)
+  * debian/rules: Dropped path in compiler variables, such that the
+    package can be built using gcc-snapshot
 
   [ Thomas Weber ]
   * debian/compat: switch to level 6

Modified: octave/trunk/debian/rules
===================================================================
--- octave/trunk/debian/rules	2008-02-06 22:52:57 UTC (rev 1189)
+++ octave/trunk/debian/rules	2008-02-07 09:56:14 UTC (rev 1190)
@@ -61,9 +61,9 @@
 #c_compiler	= /usr/bin/gcc-3.3
 #cxx_compiler	= /usr/bin/g++-3.3
 #f77_compiler	= /usr/bin/g77-3.3
-c_compiler	= /usr/bin/gcc
-cxx_compiler	= /usr/bin/g++
-f77_compiler	= /usr/bin/gfortran
+c_compiler	= gcc
+cxx_compiler	= g++
+f77_compiler	= gfortran
 fc_flag		=
 fc_libs		=
 compilerflags	= -O2




More information about the Pkg-octave-commit mailing list