author | eilers <eilers> | 2003-01-06 14:24:46 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-01-06 14:24:46 (UTC) |
commit | ecfa9b195ba1bdbe1254c21631fdce277c2c67b1 (patch) (unidiff) | |
tree | ad9f63167c178dd43690b725f815d9d5c6de6bbb | |
parent | 7c87dd496f7c407327d8d6a304d712dfa3887a36 (diff) | |
download | opie-ecfa9b195ba1bdbe1254c21631fdce277c2c67b1.zip opie-ecfa9b195ba1bdbe1254c21631fdce277c2c67b1.tar.gz opie-ecfa9b195ba1bdbe1254c21631fdce277c2c67b1.tar.bz2 |
bison -v creates a segmentation fault on my release 1.75. Removed this parameter
-rw-r--r-- | scripts/kconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 6782d4a..7e257be 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -1,58 +1,58 @@ | |||
1 | VERSION=1.2 | 1 | VERSION=1.2 |
2 | CC=gcc | 2 | CC=gcc |
3 | CXX=g++ | 3 | CXX=g++ |
4 | CFLAGS=-O2 -Wall -g -fPIC | 4 | CFLAGS=-O2 -Wall -g -fPIC |
5 | CXXFLAGS=$(CFLAGS) -I$(HOSTQTDIR)/include | 5 | CXXFLAGS=$(CFLAGS) -I$(HOSTQTDIR)/include |
6 | LDFLAGS= | 6 | LDFLAGS= |
7 | LXXFLAGS=$(LDFLAGS) -L$(HOSTQTDIR)/lib -Wl,-rpath,$(HOSTQTDIR)/lib | 7 | LXXFLAGS=$(LDFLAGS) -L$(HOSTQTDIR)/lib -Wl,-rpath,$(HOSTQTDIR)/lib |
8 | LEX=flex | 8 | LEX=flex |
9 | YACC=bison | 9 | YACC=bison |
10 | YFLAGS=-d -t -v | 10 | YFLAGS=-d -t #-v |
11 | ifndef HOSTQTDIR | 11 | ifndef HOSTQTDIR |
12 | ifeq ($(shell if [ -e /usr/share/qt ]; then echo foundit; fi),foundit) | 12 | ifeq ($(shell if [ -e /usr/share/qt ]; then echo foundit; fi),foundit) |
13 | HOSTQTDIR=/usr/share/qt | 13 | HOSTQTDIR=/usr/share/qt |
14 | else | 14 | else |
15 | ifeq ($(shell if [ -e /usr/lib/qt ]; then echo foundit; fi),foundit) | 15 | ifeq ($(shell if [ -e /usr/lib/qt ]; then echo foundit; fi),foundit) |
16 | HOSTQTDIR=/usr/lib/qt | 16 | HOSTQTDIR=/usr/lib/qt |
17 | endif | 17 | endif |
18 | endif | 18 | endif |
19 | endif | 19 | endif |
20 | 20 | ||
21 | ifndef QTLIB | 21 | ifndef QTLIB |
22 | ifeq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt-mt.so ]; then echo foundit; fi),foundit) | 22 | ifeq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt-mt.so ]; then echo foundit; fi),foundit) |
23 | QTLIB=-lqt-mt | 23 | QTLIB=-lqt-mt |
24 | else | 24 | else |
25 | ifneq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt.so ]; then echo foundit; fi),foundit) | 25 | ifneq ($(shell if [ -e $(HOSTQTDIR)/lib/libqt.so ]; then echo foundit; fi),foundit) |
26 | $(warning Unable to locate libqt.so!) | 26 | $(warning Unable to locate libqt.so!) |
27 | endif | 27 | endif |
28 | QTLIB=-lqt | 28 | QTLIB=-lqt |
29 | endif | 29 | endif |
30 | endif | 30 | endif |
31 | 31 | ||
32 | MOC=$(wildcard $(HOSTQTDIR)/bin/moc) | 32 | MOC=$(wildcard $(HOSTQTDIR)/bin/moc) |
33 | 33 | ||
34 | parse_SRC=zconf.y | 34 | parse_SRC=zconf.y |
35 | conf_SRC=conf.c $(parse_SRC) | 35 | conf_SRC=conf.c $(parse_SRC) |
36 | mconf_SRC=mconf.c $(parse_SRC) | 36 | mconf_SRC=mconf.c $(parse_SRC) |
37 | qconf_SRC=qconf.cc | 37 | qconf_SRC=qconf.cc |
38 | lkcc_SRC=cml1.y cml1.l help.l cml1.h expr1.c | 38 | lkcc_SRC=cml1.y cml1.l help.l cml1.h expr1.c |
39 | HDR=expr.h lkc.h lkc_proto.h qconf.h | 39 | HDR=expr.h lkc.h lkc_proto.h qconf.h |
40 | OTHER=README lkc_spec lkc_overview Makefile.kernel convert-all prepare-all.diff fixup-all.diff \ | 40 | OTHER=README lkc_spec lkc_overview Makefile.kernel convert-all prepare-all.diff fixup-all.diff \ |
41 | kconfig.i extconf.rb example | 41 | kconfig.i extconf.rb example |
42 | INST=zconf.y zconf.l confdata.c expr.c symbol.c menu.c conf.c mconf.c qconf.cc kconfig_load.c images.c $(parse_SRC) $(HDR) | 42 | INST=zconf.y zconf.l confdata.c expr.c symbol.c menu.c conf.c mconf.c qconf.cc kconfig_load.c images.c $(parse_SRC) $(HDR) |
43 | INSTGEN=lex.zconf.c zconf.tab.c zconf.tab.h | 43 | INSTGEN=lex.zconf.c zconf.tab.c zconf.tab.h |
44 | 44 | ||
45 | #DEBUG=1 | 45 | #DEBUG=1 |
46 | ifdef DEBUG | 46 | ifdef DEBUG |
47 | CFLAGS+=-DLKC_DIRECT_LINK | 47 | CFLAGS+=-DLKC_DIRECT_LINK |
48 | qconf_SRC+=$(parse_SRC) | 48 | qconf_SRC+=$(parse_SRC) |
49 | else | 49 | else |
50 | qconf_SRC+=kconfig_load.c | 50 | qconf_SRC+=kconfig_load.c |
51 | endif | 51 | endif |
52 | 52 | ||
53 | SRC=$(conf_SRC) $(mconf_SRC) $(qconf_SRC) $(lkcc_SRC) | 53 | SRC=$(conf_SRC) $(mconf_SRC) $(qconf_SRC) $(lkcc_SRC) |
54 | CSRC=$(filter %.c, $(SRC)) | 54 | CSRC=$(filter %.c, $(SRC)) |
55 | YSRC=$(filter %.y, $(SRC)) | 55 | YSRC=$(filter %.y, $(SRC)) |
56 | LSRC=$(filter %.l, $(SRC)) | 56 | LSRC=$(filter %.l, $(SRC)) |
57 | 57 | ||
58 | parse_OBJ=$(filter %.o, \ | 58 | parse_OBJ=$(filter %.o, \ |