Changeset 299
- Timestamp:
- Nov 2, 2006, 1:18:43 PM (19 years ago)
- Location:
- CMT/v1rc19/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CMT/v1rc19/source/cmt_syntax.cxx
r295 r299 169 169 value = w; 170 170 Symbol::expand(value); 171 cout <<"# strategy: "<<value<<endl;172 171 173 172 if (value == "prototypes") … … 248 247 { 249 248 if (project != 0) project->set_strategy (strategy, value, ""); 250 //(project->get_use())->get_package_name ());251 249 } 252 250 else … … 976 974 bool result = true; 977 975 978 value = w; 979 980 if (w == "config") 976 value = w; 977 Symbol::expand(value); 978 979 980 if (value == "config") 981 981 { 982 982 strategy = "SetupConfig"; 983 983 } 984 else if ( w== "no_config")984 else if (value == "no_config") 985 985 { 986 986 strategy = "SetupConfig"; 987 987 } 988 else if ( w== "root")988 else if (value == "root") 989 989 { 990 990 strategy = "SetupRoot"; 991 991 } 992 else if ( w== "no_root")992 else if (value == "no_root") 993 993 { 994 994 strategy = "SetupRoot"; 995 995 } 996 else if ( w== "cleanup")996 else if (value == "cleanup") 997 997 { 998 998 strategy = "SetupCleanup"; 999 999 } 1000 else if ( w== "no_cleanup")1000 else if (value == "no_cleanup") 1001 1001 { 1002 1002 strategy = "SetupCleanup"; … … 1080 1080 1081 1081 value = w; 1082 1083 if (w == "with_version_directory") 1082 Symbol::expand(value); 1083 1084 if (value == "with_version_directory") 1084 1085 { 1085 1086 strategy = "VersionDirectory"; 1086 1087 } 1087 else if ( w== "without_version_directory")1088 else if (value == "without_version_directory") 1088 1089 { 1089 1090 strategy = "VersionDirectory"; -
CMT/v1rc19/source/cmt_version.h
r289 r299 9 9 10 10 //#define CMTVERSION "v1r18p20050901" 11 #define CMTVERSION "v1r beta20p20061025"11 #define CMTVERSION "v1rc19" 12 12 13 13 #endif
Note:
See TracChangeset
for help on using the changeset viewer.