On Thu, Nov 08, 2001 at 11:55:56AM -0800, Kenny Flegal wrote:
> make: *** [tt2_splash] Error 255
> error: Bad exit status from /var/tmp/rpm-tmp.9246 (%install)
Not sure what the root cause is, but there's definately an omission
on my part - I don't check the return value of a Template->new() call.
Can you try it again with the following change and let me know what
error gets reported?
diff -u -r2.4 gifsplash
--- gifsplash 2001/09/11 14:51:21 2.4
+++ gifsplash 2001/11/09 08:44:59
@@ -43,7 +43,7 @@
INCLUDE_PATH => "$inst/templates",
PRE_PROCESS => 'html/rgb',
OUTPUT_PATH => $dest,
-);
+) || die Template->error(), "\n";
my $vars = {
gifs => load_gifs($src),
Cheers
A