diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 5662111f22..1ecbb79876 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-27 15:30 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/postinst.hbs + ! Fixed to copy bin/*.hbs files also on *nix systems. + 2010-07-27 15:25 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * mpkg_rpm.sh * mpkg_rpm_wce.sh diff --git a/harbour/config/postinst.hbs b/harbour/config/postinst.hbs index f7dec36694..b04e9fa467 100644 --- a/harbour/config/postinst.hbs +++ b/harbour/config/postinst.hbs @@ -71,6 +71,11 @@ PROCEDURE Main() hb_FCopy( "COPYING", GetEnv( "HB_INSTALL_PREFIX" ) + hb_ps() + "COPYING" ) hb_FCopy( "INSTALL", GetEnv( "HB_INSTALL_PREFIX" ) + hb_ps() + "INSTALL" ) hb_FCopy( "TODO" , GetEnv( "HB_INSTALL_PREFIX" ) + hb_ps() + "TODO" ) + ENDIF + + IF ! Empty( GetEnv( "HB_BIN_INSTALL" ) ) + + OutStd( "! Copying Harbour scrip (.hbs) files..." + hb_eol() ) /* public Harbour scripts */ FOR EACH tmp IN { "hbmk2l2d.hbs" ,; @@ -79,8 +84,7 @@ PROCEDURE Main() NEXT ENDIF - IF !( GetEnv( "HB_PLATFORM" ) $ "win|wce|os2|dos" ) .AND. ; - ! Empty( GetEnv( "HB_ETC_INSTALL" ) ) .AND. ; + IF ! Empty( GetEnv( "HB_ETC_INSTALL" ) ) .AND. ; GetEnv( "HB_SYSLOC" ) == "yes" OutStd( "! Copying *nix config files..." + hb_eol() )