]> git.saurik.com Git - bison.git/blobdiff - src/output.c
Port to SunOS 4.1.4, which lacks strtoul and strerror.
[bison.git] / src / output.c
index 9bc806f14e4cc529e5e33c96cc20b6acac104d13..5b12f72806cf969df030e7f8c9fff79f4301055d 100644 (file)
@@ -616,8 +616,12 @@ prepare (void)
        skeleton = "yacc.c";
     }
 
-  /* Parse the skeleton file and output the needed parsers.  */
-  MUSCLE_INSERT_C_STRING ("skeleton", skeleton);
+  /* About the skeletons. */
+  {
+    char const *pkgdatadir = getenv ("BISON_PKGDATADIR");
+    MUSCLE_INSERT_STRING ("pkgdatadir", pkgdatadir ? pkgdatadir : PKGDATADIR);
+    MUSCLE_INSERT_C_STRING ("skeleton", skeleton);
+  }
 }