Re: bin_library_info script

2014-07-02 Thread Marina Latini



 
 the error message is correct: popd does not take a directory parameter
 - fixed on master by commit
 ffa354e2defcdc86d93c257159f9428e276c2d2e

Thank you ;)

-- 

Marina Latini 
mar...@studiostorti.com


Studio Storti Srl
Viale Leonardo da Vinci, 18
36100 - Vicenza (VI)
http://www.studiostorti.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: bin_library_info script

2014-06-30 Thread Michael Stahl
On 27/06/14 09:44, Marina Latini wrote:
 Hi all,
 JFYI, this is a frequent warning displayed while building master with sources 
 updated today with git pull:
 
 libreoffice/solenv/bin/bin_library_info.sh: line 38: popd: libreoffice: 
 invalid argument popd: use: popd [-n] [+N | -N]
 
 libreoffice/solenv/bin/bin_library_info.sh: line 51: popd: libreoffice: 
 invalid argument popd: use: popd [-n] [+N | -N]

can't remember ever seeing this, but probably it depends on some
configure options...

 The involved functions are:
 
 get_config_sha()
 {
 pushd ${SRCDIR?}  /dev/null
 cat ${BUILDDIR?}/config_host.mk | git hash-object --stdin
 popd ${SRCDIR?}  /dev/null
 }

the error message is correct: popd does not take a directory parameter
- fixed on master by commit
ffa354e2defcdc86d93c257159f9428e276c2d2e
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


bin_library_info script

2014-06-29 Thread Marina Latini
Hi all,
JFYI, this is a frequent warning displayed while building master with sources 
updated today with git pull:

libreoffice/solenv/bin/bin_library_info.sh: line 38: popd: libreoffice: invalid 
argument popd: use: popd [-n] [+N | -N]

libreoffice/solenv/bin/bin_library_info.sh: line 51: popd: libreoffice: invalid 
argument popd: use: popd [-n] [+N | -N]

The involved functions are:

get_config_sha()
{
pushd ${SRCDIR?}  /dev/null
cat ${BUILDDIR?}/config_host.mk | git hash-object --stdin
popd ${SRCDIR?}  /dev/null
}

and

get_library_gbuild_sha()
{
local module=$1

pushd ${SRCDIR?}  /dev/null
if [ -d ${SRCDIR}/external/${module?} ] ; then
git ls-tree -d HEAD external/${module?} | cut -f 1 | cut -d   -f 3
else
git ls-tree -d HEAD | {module?} | cut -f 1 | cut -d   -f 3
fi
popd ${SRCDIR?}  /dev/null
}


Have a nice day and enjoy, today is friday ;)
Marina

-- 

Marina Latini 
mar...@studiostorti.com


Studio Storti Srl
Viale Leonardo da Vinci, 18
36100 - Vicenza (VI)
http://www.studiostorti.com

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice