summaryrefslogtreecommitdiff
path: root/source4/script/yacc_compile.sh
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-08-04 05:23:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:31:12 -0500
commit586838c306fb1f8c814d93d16c698d9e4967604d (patch)
tree48d28d7ac2768fd0043e2ef15c7def96352cf5a8 /source4/script/yacc_compile.sh
parent4b8733c24524828662f7d381ec7533ba44afb07d (diff)
downloadsamba-586838c306fb1f8c814d93d16c698d9e4967604d.tar.gz
samba-586838c306fb1f8c814d93d16c698d9e4967604d.tar.bz2
samba-586838c306fb1f8c814d93d16c698d9e4967604d.zip
r9052: Support lex/yacc compilers without support for -o
(This used to be commit e641d3a847f2dafc25e5555eed601325cbc86c07)
Diffstat (limited to 'source4/script/yacc_compile.sh')
-rwxr-xr-xsource4/script/yacc_compile.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/source4/script/yacc_compile.sh b/source4/script/yacc_compile.sh
new file mode 100755
index 0000000000..46a6fb6455
--- /dev/null
+++ b/source4/script/yacc_compile.sh
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+YACC="$1"
+SRC="$2"
+DEST="$3"
+
+dir=`dirname $SRC`
+file=`basename $SRC`
+base=`basename $SRC .y`
+if [ -z "$YACC" ]; then
+ echo "yacc not found"
+ return;
+fi
+if [ -r $DEST ]; then
+ if [ x`find $SRC -newer $DEST -print` != x$SRC ]; then
+ return;
+ fi
+fi
+TOP=`pwd`
+if cd $dir && $YACC -d $file; then
+ sed -e "/^#/!b" -e "s|y\.tab\.h|$base.h|" y.tab.h > $base.h
+ sed '/^#/ s|y\.tab\.c|$base.c|' y.tab.c > $base.c
+ rm -f y.tab.c y.tab.h
+fi
+cd $TOP