diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c9ff877369..d168bb9b48 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2007-07-31 22:00 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/make_deb.sh + * cleanup + 2007-07-31 21:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/make_rpm.sh * removed not longer necessary flex and bison from dependences list diff --git a/harbour/make_deb.sh b/harbour/make_deb.sh index 3272873157..8a156a806f 100755 --- a/harbour/make_deb.sh +++ b/harbour/make_deb.sh @@ -10,15 +10,15 @@ # See doc/license.txt for licensing terms. # --------------------------------------------------------------- -test_reqrpm() +test_reqpkg() { dpkg -s "$1" &> /dev/null } TOINST_LST="" -for i in gcc binutils bash debmake libncurses-dev libslang2-dev libx11-dev unixodbc-dev +for i in gcc binutils bash debmake libncurses5-dev libslang2-dev libgpmg1-dev libx11-dev unixodbc-dev do - test_reqrpm "$i" || TOINST_LST="${TOINST_LST} $i" + test_reqpkg "$i" || TOINST_LST="${TOINST_LST} $i" done if [ -z "${TOINST_LST}" ] || [ "$1" = "--force" ] @@ -42,7 +42,11 @@ then fi else echo "If you want to build Harbour compiler" - echo "you have to install the folowing RPM files:" + echo "you have to install the folowing packages:" + echo "" echo "${TOINST_LST}" + echo "" + echo "you can do that executing:" + echo "sudo apt-get install ${TOINST_LST}" exit 1 fi