From: Michael R. Crusoe <michael.crusoe>
Subject: remove unnecessary __FILE__ reference

It reduces the reproduciblilty of the build
--- racon.orig/src/polisher.cpp
+++ racon/src/polisher.cpp
@@ -148,8 +148,7 @@
 #else
         fprintf(stderr, "[racon::createPolisher] error: "
                 "Attemping to use CUDA when CUDA support is not available.\n"
-                "Please check logic in %s:%s\n",
-                __FILE__, __func__);
+                "Please check logic in scripts/racon_wrapper.py:%s\n", __func__);
         exit(1);
 #endif
     }
--- racon.orig/test/racon_test_config.h.in
+++ racon/test/racon_test_config.h.in
@@ -6,4 +6,4 @@
 
 #include <string>
 
-const std::string racon_test_data_path = "@racon_test_data_path@";
+const std::string racon_test_data_path = "./data/";
