Description: Do not print error message when RAWwAVE_PATH is undefined
 In Debian, we know where they are.
Forwarded: yes, applied as option in commit 8df276eeb886750b959afdd6271f506fbc4de332
--- a/Opcodes/stk/stkOpcodes.cpp
+++ b/Opcodes/stk/stkOpcodes.cpp
@@ -715,19 +715,15 @@ extern "C"
       const char *path = csound->GetEnv(csound, "RAWWAVE_PATH");
     if(!path)
       {
-        csound->ErrorMsg(csound,
-                         Str("Error: define environment variable RAWWAVE_PATH\n"
-                             "(points to rawwaves directory) to use STK opcodes."));
-        return 0;
+        path = "/usr/share/stk/rawwaves";
       }
-    else
-      {
+      
         csound_global_mutex_lock();
         Stk::setRawwavePath(path);
         csound_global_mutex_unlock();
         csound->DebugMsg(csound,
                          Str("RAWWAVE_PATH: %s\n"), Stk::rawwavePath().c_str());
-      }
+      
     int status = 0;
     for(OENTRY *oentry = &oentries[0]; oentry->opname; oentry++)
       {
