diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c283ba0223..fdc3a8d097 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-06-03 18:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/common.mak + * harbour/source/rtl/Makefile + - harbour/source/rtl/hbrun.c + + harbour/source/rtl/hbrunfun.c + * renamed hbrun.c to hbrunfun.c to satisfy non GNU make system + 2008-06-03 18:08 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/common.mak * harbour/source/rtl/Makefile diff --git a/harbour/common.mak b/harbour/common.mak index 5fb2d193c5..9897c69d19 100644 --- a/harbour/common.mak +++ b/harbour/common.mak @@ -501,7 +501,7 @@ RTL_LIB_OBJS = \ $(OBJ_DIR)\hbrandom$(OBJEXT) \ $(OBJ_DIR)\hbregex$(OBJEXT) \ $(OBJ_DIR)\hbregexc$(OBJEXT) \ - $(OBJ_DIR)\hbrun$(OBJEXT) \ + $(OBJ_DIR)\hbrunfun$(OBJEXT) \ $(OBJ_DIR)\hbtoken$(OBJEXT) \ $(OBJ_DIR)\hbzlib$(OBJEXT) \ $(OBJ_DIR)\idle$(OBJEXT) \ diff --git a/harbour/source/rtl/Makefile b/harbour/source/rtl/Makefile index bff329734f..ead025b983 100644 --- a/harbour/source/rtl/Makefile +++ b/harbour/source/rtl/Makefile @@ -66,7 +66,7 @@ C_SOURCES=\ hbrandom.c \ hbregex.c \ hbregexc.c \ - hbrun.c \ + hbrunfun.c \ hbtoken.c \ hbzlib.c \ idle.c \ diff --git a/harbour/source/rtl/hbrun.c b/harbour/source/rtl/hbrunfun.c similarity index 100% rename from harbour/source/rtl/hbrun.c rename to harbour/source/rtl/hbrunfun.c