2012-10-31 18:54 UTC+0100 Viktor Szakats (harbour syenar.net)

- config/hb_c.cfg
  + bin/harbour.ucf
    * renamed and moved to public dir

  * config/postinst.hb
    + added find.hb to the installed files
    + added harbour.ucf to the installed file

  * package/winuni/mpkg_win_uni.bat
  * package/winuni/mpkg_win_uni.nsi
    + added harbour.ucf to files included in winuni distro
    ! fixed missing bin/*.hb scripts in .7z winuni archive
This commit is contained in:
Viktor Szakats
2012-10-31 17:56:18 +00:00
parent aae2bb33fb
commit 86cf2bc04f
5 changed files with 22 additions and 2 deletions

View File

@@ -16,6 +16,20 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-10-31 18:54 UTC+0100 Viktor Szakats (harbour syenar.net)
- config/hb_c.cfg
+ bin/harbour.ucf
* renamed and moved to public dir
* config/postinst.hb
+ added find.hb to the installed files
+ added harbour.ucf to the installed file
* package/winuni/mpkg_win_uni.bat
* package/winuni/mpkg_win_uni.nsi
+ added harbour.ucf to files included in winuni distro
! fixed missing bin/*.hb scripts in .7z winuni archive
2012-10-31 18:20 UTC+0100 Viktor Szakats (harbour syenar.net)
* tests/gfx.prg
+ changed do display GT name on screen rather than to stdout
@@ -61,7 +75,7 @@
+ updated to do better vertical aligment in
structs, var declarations and assignments
; TODO: move this to /bin folder and add to 'install'-ed
file list, rename to 'harbour.ucf'
file list, rename to 'harbour.ucf' [DONE]
* src/debug/*.prg
* src/rdd/*.prg

View File

@@ -84,7 +84,10 @@ PROCEDURE Main( ... )
OutStd( "! Copying Harbour script files..." + hb_eol() )
/* public Harbour scripts */
FOR EACH tmp IN { "bin/3rdpatch.hb" }
FOR EACH tmp IN { ;
"bin/3rdpatch.hb", ;
"bin/find.hb", ;
"bin/harbour.ucf" }
mk_hb_FCopy( tmp, GetEnvC( "HB_INSTALL_BIN" ) + hb_ps() )
NEXT
ENDIF

View File

@@ -116,6 +116,8 @@ echo "%HB_DR%bin\hbnetio.exe" >> _hbfiles
echo "%HB_DR%bin\hbpp.exe" >> _hbfiles
echo "%HB_DR%bin\hbrun.exe" >> _hbfiles
echo "%HB_DR%bin\hbtest.exe" >> _hbfiles
if exist "%HB_DR%bin\*.hb" echo "%HB_DR%bin\*.hb" >> _hbfiles
if exist "%HB_DR%bin\*.ucf" echo "%HB_DR%bin\*.ucf" >> _hbfiles
if exist "%HB_DR%bin\hbmk.hbc" echo "%HB_DR%bin\hbmk.hbc" >> _hbfiles
echo "%HB_DR%bin\upx*.*" >> _hbfiles
echo "%HB_DR%include\*.*" >> _hbfiles

View File

@@ -102,6 +102,7 @@ Section "Main components" hb_main
File "$%HB_ABSROOT%bin\hbrun.exe"
File "$%HB_ABSROOT%bin\hbtest.exe"
File /nonfatal "$%HB_ABSROOT%bin\*.hb"
File /nonfatal "$%HB_ABSROOT%bin\*.ucf"
File /nonfatal "$%HB_ABSROOT%bin\hbmk.hbc"
File "$%HB_ABSROOT%bin\upx*.*"