From: <ale...@us...> - 2007-04-06 20:08:08
|
Revision: 2473 http://svn.sourceforge.net/morphix/?rev=2473&view=rev Author: alextreme Date: 2007-04-06 13:08:04 -0700 (Fri, 06 Apr 2007) Log Message: ----------- * new upload, with bmsleight's patch Modified Paths: -------------- trunk/mmaker/debian/changelog trunk/mmaker/libmorphix/makemini.c trunk/mmaker/libmorphix/makemodule.c Modified: trunk/mmaker/debian/changelog =================================================================== --- trunk/mmaker/debian/changelog 2007-04-06 19:22:45 UTC (rev 2472) +++ trunk/mmaker/debian/changelog 2007-04-06 20:08:04 UTC (rev 2473) @@ -1,7 +1,14 @@ +morphix-mmaker (0.4-39) unstable; urgency=low + + * bmsleight's makemodule improvement (retrieve-to-directory patch) + + -- root <ro...@al...> Fri, 6 Apr 2007 22:03:03 +0200 + morphix-mmaker (0.4-38) unstable; urgency=low + * fixing dependancies * Fix for remote retrieve of files - + -- bmsleight <bms...@ba...> Thu, 05 Apr 2007 21:00:00 +0100 morphix-mmaker (0.4-37) unstable; urgency=low Modified: trunk/mmaker/libmorphix/makemini.c =================================================================== --- trunk/mmaker/libmorphix/makemini.c 2007-04-06 19:22:45 UTC (rev 2472) +++ trunk/mmaker/libmorphix/makemini.c 2007-04-06 20:08:04 UTC (rev 2473) @@ -158,7 +158,7 @@ gboolean update = FALSE; // should add another argument for this one FILE *file; - if (user == NULL) { + if (user == NULL && save_overlay == FALSE) { return FALSE; } Modified: trunk/mmaker/libmorphix/makemodule.c =================================================================== --- trunk/mmaker/libmorphix/makemodule.c 2007-04-06 19:22:45 UTC (rev 2472) +++ trunk/mmaker/libmorphix/makemodule.c 2007-04-06 20:08:04 UTC (rev 2473) @@ -550,7 +550,7 @@ gchar *http_s = "http://"; if (strncmp(r->from,http_s,strlen(http_s)) == 0) { - #If the last charactor of r->from is a / then we need wget -P else wget -O + // If the last charactor of r->from is a / then we need wget -P else wget -O char * pch; char wgetopt; pch=strrchr(r->from,'/'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |