From aa952fb2b0b469b00698f9b1e4c45205ed9535c6 Mon Sep 17 00:00:00 2001 From: "bart@bartbes.ath.cx" Date: Wed, 28 Oct 2009 18:14:32 +0100 Subject: [PATCH] Fixed gen-makefile to provide the entire source of lua lanes (fixes corrupt tarballs) --- platform/unix/gen-makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/unix/gen-makefile b/platform/unix/gen-makefile index 637ceb8d2..7fa35de21 100644 --- a/platform/unix/gen-makefile +++ b/platform/unix/gen-makefile @@ -14,7 +14,7 @@ bin_PROGRAMS = love #love_LDADD = love_SOURCES = \\" > Makefile.am.tmp -find . \( \( -iname "*.c" -o -iname "*.cpp" -o -iname "*.h" \) \) -exec echo '{}' \\ \; >> Makefile.am.tmp +find . \( \( -iname "*.c" -o -iname "*.cpp" -o -iname "*.h" -o -iname "*.lch" \) \) -exec echo '{}' \\ \; >> Makefile.am.tmp cat Makefile.am.tmp | grep -v -f"../platform/unix/exclude" | head -c -3 > Makefile.am #head -c -3 Makefile.am.tmp > Makefile.am rm Makefile.am.tmp