|
From: <nn...@us...> - 2006-03-14 23:26:04
|
Revision: 1982 Author: nneul Date: 2006-03-14 15:25:59 -0800 (Tue, 14 Mar 2006) ViewCVS: http://svn.sourceforge.net/tora/?rev=1982&view=rev Log Message: ----------- remove an unused script Removed Paths: ------------- trunk/tora/gen-license-h.pl Deleted: trunk/tora/gen-license-h.pl =================================================================== --- trunk/tora/gen-license-h.pl 2006-03-14 23:24:54 UTC (rev 1981) +++ trunk/tora/gen-license-h.pl 2006-03-14 23:25:59 UTC (rev 1982) @@ -1,20 +0,0 @@ -#!/usr/bin/perl - -open(OUT, ">LICENSE.h"); -print OUT "static char *LicenseText=\n"; - -print OUT "\"<PRE>\"", "\n"; - -open(IN, "LICENSE.txt"); -while ( <IN> ) -{ - chomp; - s/\\/\\\\/; - s/\"/\\\"/g; - print OUT "\"$_\\n\"", "\n"; -} -close(IN); - -print OUT "\"</PRE>\";"; -print OUT "\n"; -close(OUT); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |