Changeset 595
- Timestamp:
- Nov 25, 2006, 3:16:39 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r593 r595 5 5 o Fixed some issues with SDKS and linking. 6 6 - kmk: 7 o Fixed bug in the sdk walking in kbuild_collect_source_prop. 7 8 o Added --pretty-command-printing for simplifying makefile debugging. 8 9 -
trunk/src/gmake/kbuild.c
r575 r595 829 829 830 830 /* the global sdks */ 831 for (iSdk = pSdks->iGlobal; iSdk < pSdks-> cGlobal; iSdk++)831 for (iSdk = pSdks->iGlobal; iSdk < pSdks->iGlobal + pSdks->cGlobal; iSdk++) 832 832 { 833 833 struct variable *pSdk = &pSdks->pa[iSdk]; … … 863 863 864 864 /* the target sdks */ 865 for (iSdk = pSdks->iTarget; iSdk < pSdks-> cTarget; iSdk++)865 for (iSdk = pSdks->iTarget; iSdk < pSdks->iTarget + pSdks->cTarget; iSdk++) 866 866 { 867 867 struct variable *pSdk = &pSdks->pa[iSdk]; … … 897 897 898 898 /* the source sdks */ 899 for (iSdk = pSdks->iSource; iSdk < pSdks-> cSource; iSdk++)899 for (iSdk = pSdks->iSource; iSdk < pSdks->iSource + pSdks->cSource; iSdk++) 900 900 { 901 901 struct variable *pSdk = &pSdks->pa[iSdk]; … … 932 932 933 933 /* the target + source sdks */ 934 for (iSdk = pSdks->iTargetSource; iSdk < pSdks-> cTargetSource; iSdk++)934 for (iSdk = pSdks->iTargetSource; iSdk < pSdks->iTargetSource + pSdks->cTargetSource; iSdk++) 935 935 { 936 936 struct variable *pSdk = &pSdks->pa[iSdk];
Note:
See TracChangeset
for help on using the changeset viewer.