linux.cf: always use bison
authorJon Trulson <jon@radscan.com>
Mon, 2 Dec 2019 01:57:07 +0000 (18:57 -0700)
committerJon Trulson <jon@radscan.com>
Mon, 2 Dec 2019 02:18:00 +0000 (19:18 -0700)
For some reason, whenever OSMajorVersion was >= 2 (this equates to a
2.x kernel or above), yacc would be used instead of bison.

On Ubuntu, and probably other linux systems, yacc is just a shell
wrapper around bison, so let's just use that directly.

cde/config/cf/linux.cf

index a93176ad4c83934412593cd7860584244307cd7b..8e40b576bedc5abde4d1de587d6385248972f6e8 100644 (file)
@@ -120,11 +120,7 @@ XCOMM binutils:  (LinuxBinUtilsMajorVersion)
 
 #define MkdirHierCmd           mkdir -p
 #define CppCmd                 /lib/cpp
-#if OSMajorVersion >= 2
-# define YaccCmd                yacc
-#else
-# define YaccCmd                bison -y
-#endif
+#define YaccCmd                bison -y
 #define LexCmd                 flex -l
 #define LexLib                 -lfl
 #define PreProcessCmd          CcCmd -E