Skip to content

Commit 28df644

Browse files
committed
Move 'py2lcov' utility to 'bin' directory (from
'share/lcov/support-scripts') - to make it consistent with the perl2lcov utility. Signed-off-by: Henry Cox <[email protected]>
1 parent 7bbc2b8 commit 28df644

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ TMP_DIR := $(shell mktemp -d)
6363
FILES := $(wildcard bin/*) $(wildcard man/*) README Makefile \
6464
$(wildcard rpm/*) lcovrc
6565

66-
EXES = lcov genhtml geninfo genpng gendesc perl2lcov
66+
EXES = lcov genhtml geninfo genpng gendesc perl2lcov py2lcov
6767
# there may be both public and non-public user scripts - so lets not show
6868
# any of their names
6969
SCRIPTS = $(shell ls scripts | grep -v -E '([\#\~]|\.orig|\.bak|\.BAK)' )
File renamed without changes.

tests/py2lcov/py2lcov.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,7 @@ fi
7373

7474
LCOV_HOME=`(cd ${LCOV_HOME} ; pwd)`
7575

76-
if [ -f ${LCOV_HOME}/scripts/py2lcov ] ; then
77-
PY2LCOV_SCRIPT=${LCOV_HOME}/scripts/py2lcov
78-
else
79-
PY2LCOV_SCRIPT=${LCOV_HOME}/share/lcov/support-scripts/py2lcov
80-
fi
76+
PY2LCOV_SCRIPT=${LCOV_HOME}/bin/py2lcov
8177

8278
if [ ! -x $PY2LCOV_SCRIPT ] ; then
8379
echo "missing py2lcov script - dying"

0 commit comments

Comments
 (0)