mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
linux.cf: always use bison
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.
This commit is contained in:
parent
5cebd7c4da
commit
6c07a2ae69
1 changed files with 1 additions and 5 deletions
|
@ -120,11 +120,7 @@ XCOMM binutils: (LinuxBinUtilsMajorVersion)
|
||||||
|
|
||||||
#define MkdirHierCmd mkdir -p
|
#define MkdirHierCmd mkdir -p
|
||||||
#define CppCmd /lib/cpp
|
#define CppCmd /lib/cpp
|
||||||
#if OSMajorVersion >= 2
|
#define YaccCmd bison -y
|
||||||
# define YaccCmd yacc
|
|
||||||
#else
|
|
||||||
# define YaccCmd bison -y
|
|
||||||
#endif
|
|
||||||
#define LexCmd flex -l
|
#define LexCmd flex -l
|
||||||
#define LexLib -lfl
|
#define LexLib -lfl
|
||||||
#define PreProcessCmd CcCmd -E
|
#define PreProcessCmd CcCmd -E
|
||||||
|
|
Loading…
Reference in a new issue