repo.or.cz
/
personal-kdelibs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix logic
[personal-kdelibs.git]
/
khtml
/
css
/
makeparser
blob
d36d1e36458aa69638314bf32735a8c3efe943e1
1
#!/bin/sh
2
3
YACC
=
bison
4
5
$YACC
-v -d -p
cssyy parser.y
&&
mv
parser.tab.c parser.cpp
;
6
if
test -f
parser.tab.h
;
then
7
if
cmp
-s
parser.tab.h parser.h
;
then
rm
-f
parser.tab.h
;
8
else
mv
parser.tab.h parser.h
;
fi
9
else
:;
fi