Changeset 660
- Timestamp:
- 2005年07月15日 11時12分18秒 (3 years ago)
- Files:
-
- branches/3.00/src/ChangeLog.Meadow (modified) (1 diff)
- branches/3.00/src/install.cc (modified) (1 diff)
- branches/3.00/src/res.rc (modified) (1 diff)
- branches/3.00/src/script.cc (modified) (1 diff)
- branches/3.00/src/setup_version.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/3.00/src/ChangeLog.Meadow
r644 r660 1 2005-07-15 KOSEKI Yoshinori <kose@meadowy.org> 2 3 * setup_version.c (version_store): Version is changed to 3.00.1. 4 5 * script.cc (run): Changet setup-postinstall log file. 6 7 * install.cc (install_one): Change source extract dir, set to /. 8 9 * res.rc (IDS_MIRROR_LST): Change URL 10 http://www.meadowy.org/meadow/dists/3.00/mirrors.lst. 11 1 12 2005-03-13 Masayuki FUJII <boochang@m4.kcn.ne.jp> 2 13 branches/3.00/src/install.cc
r644 r660 406 406 } 407 407 if (pkg.desired.sourcePackage().picked()) 408 #ifdef MEADOW_NETINSTALL 409 errors += 410 myInstaller.installOneSource (pkg, *pkg.desired.sourcePackage().source(), "cygfile://","/", 411 package_source); 412 #else 408 413 errors += 409 414 myInstaller.installOneSource (pkg, *pkg.desired.sourcePackage().source(), "cygfile://","/usr/src/", 410 415 package_source); 416 #endif 411 417 412 418 /* FIXME: make a upgrade method and reinstate this */ branches/3.00/src/res.rc
r644 r660 475 475 IDS_ROOT_SLASH "Warning: we recommend you do NOT use the root of your hard drive as the Meadow root. Proceed anyway?" 476 476 IDS_ROOT_SPACE "You should not choose a root path that include spaces in directory names. Proceed anyway?" 477 IDS_MIRROR_LST "http://www.meadowy.org/meadow/dists/ 2.10/mirrors.lst"477 IDS_MIRROR_LST "http://www.meadowy.org/meadow/dists/3.00/mirrors.lst" 478 478 IDS_ERR_OPEN_WRITE "Can't open %s for writing: %s" 479 479 IDS_SETUPINI_MISSING "Unable to get setup.ini from <%s>" branches/3.00/src/script.cc
r644 r660 213 213 if (to_log) 214 214 { 215 #ifdef MEADOW_NETINSTALL 216 char tmp_pat[] = "/packages/setup/setup.log.postinstallXXXXXXX"; 217 #else 215 218 char tmp_pat[] = "/var/log/setup.log.postinstallXXXXXXX"; 219 #endif 216 220 log_name = String (mktemp(tmp_pat)); 217 221 } branches/3.00/src/setup_version.c
r644 r660 1 1 #define VERSION_PREFIX "%%% setup-version" 2 2 #ifdef MEADOW_NETINSTALL 3 static const char version_store[] = VERSION_PREFIX " 3.0 .0 alpha1";3 static const char version_store[] = VERSION_PREFIX " 3.00.1"; 4 4 #else 5 5 static const char version_store[] = VERSION_PREFIX " 2.457.2.2";
