2013-03-16 12:10 UTC+0100 Viktor Szakats (harbour syenar.net)

* README.txt
    * minor to git clone

  * src/pp/hbpp.c
    * avoid the word 'svn'
This commit is contained in:
vszakats
2013-03-16 12:11:13 +01:00
parent 6c3070d8b6
commit fff340897e
3 changed files with 11 additions and 4 deletions

View File

@@ -10,6 +10,13 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-16 12:10 UTC+0100 Viktor Szakats (harbour syenar.net)
* README.txt
* minor to git clone
* src/pp/hbpp.c
* avoid the word 'svn'
2013-03-16 04:51 UTC+0100 Viktor Szakats (harbour syenar.net)
* config/global.mk
! fixed to not try to query git information and fail,
@@ -27,7 +34,7 @@
2013-03-16 02:13 UTC+0100 Viktor Szakats (harbour syenar.net)
* package/updt_web_nightly.sh
! fixed to oversights after git update
! fixed two oversights after git update
% be less verbose on download
* tests/stripsvn.hb

View File

@@ -1285,7 +1285,7 @@ TABLE OF CONTENT
You'll need Git version control software installed on your system,
and issue this command:
git clone https://github.com/harbour/core.git
git clone https://github.com/harbour/core.git harbour
You can get subsequent updates using this command:
git pull

View File

@@ -535,11 +535,11 @@ static int hb_pp_parseChangelog( PHB_PP_STATE pState, const char * pszFileName,
szTo = strchr( szFrom, '$' );
if( szTo )
{
/* Is it tarball SVN package? */
/* Is it tarball source package? */
if( szTo == szFrom )
{
/* we do not have revision number :-( */
hb_strncpy( szId, "unknown -1 (SVN tarball without keyword expanding)", sizeof( szId ) - 1 );
hb_strncpy( szId, "unknown -1 (source tarball without keyword expanding)", sizeof( szId ) - 1 );
}
else if( szTo - szFrom > 3 && szTo[ -1 ] == ' ' &&
szFrom[ 0 ] == ':' && szFrom[ 1 ] == ' ' )