Minor update.
[pysvrt.git] / build.py
index 1de39c6..264d1a9 100755 (executable)
--- a/build.py
+++ b/build.py
@@ -19,7 +19,7 @@
 #  General Public License for more details.
 #
 #  You should have received a copy of the GNU General Public License
-#  along with selector.  If not, see <http://www.gnu.org/licenses/>.
+#  along with svrt.  If not, see <http://www.gnu.org/licenses/>.
 
 from os import path
 from torch.utils.ffi import create_extension
@@ -31,9 +31,6 @@ ffi = create_extension(
     headers = [ 'svrt.h' ],
     sources = [ 'svrt.c' ],
     extra_objects = [ abs_path + '/libsvrt.so' ],
-    libraries = [ ],
-    library_dirs = [ ],
-    define_macros = [ ],
     with_cuda = False
 )