summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>2009-10-23 01:34:22 +0000
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>2009-10-23 01:34:22 +0000
commit5efa66f8c56892b332b5b611b074e8200bb0b2db (patch)
tree20956ec6685253a9518525b827b7d9b2c7358fb8
parentc4469fdddf745500ff5c383182784b68fa92fa53 (diff)
downloadragel-5efa66f8c56892b332b5b611b074e8200bb0b2db.tar.gz
ragel-5efa66f8c56892b332b5b611b074e8200bb0b2db.tar.bz2
ragel-5efa66f8c56892b332b5b611b074e8200bb0b2db.zip
Patches from Diego Elio 'Flameeyes' Pettenò.
git-svn-id: http://svn.complang.org/ragel/trunk@1130 052ea7fc-9027-0410-9066-f65837a77df0
-rw-r--r--configure.in2
-rw-r--r--contrib/ragel.m42
-rw-r--r--ragel/Makefile.am2
3 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index c5c40bf..a50b3cf 100644
--- a/configure.in
+++ b/configure.in
@@ -21,7 +21,7 @@ dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
AC_INIT(ragel, 6.5)
PUBDATE="May 2009"
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([foreign])
AC_SUBST(PUBDATE)
AC_CONFIG_HEADER(ragel/config.h)
diff --git a/contrib/ragel.m4 b/contrib/ragel.m4
index 8b9b913..c5cb9e9 100644
--- a/contrib/ragel.m4
+++ b/contrib/ragel.m4
@@ -30,7 +30,7 @@ AC_DEFUN([CHECK_RAGEL], [
AS_IF([test x"$ragel_needed" = x"yes"],
[AC_MSG_ERROR([dnl
-You need Ragel to build from GIT checkouts.
+You need Ragel to build from development sources.
You can find Ragel at http://www.complang.org/ragel/dnl
])])
])
diff --git a/ragel/Makefile.am b/ragel/Makefile.am
index beb1f9d..db3610c 100644
--- a/ragel/Makefile.am
+++ b/ragel/Makefile.am
@@ -47,6 +47,6 @@ rlparse.cpp: rlparse.kl rlparse.kh
rlscan.cpp: rlparse.h
rlscan.cpp: rlscan.rl
- ragel -G2 -o $@ $<
+ ragel -G2 -I$(builddir) -o $@ $<
endif