diff options
author | David Tardon <dtardon@redhat.com> | 2012-10-22 13:26:57 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-10-22 14:34:24 +0200 |
commit | 7f82096840a76ace982d1210cc098014a149b6a6 (patch) | |
tree | a6a79eb7a118ab09f873cebb5d9206ffc4ee5fba | |
parent | 03cd2e780bdf24c4869a0ed584099f0d3d32b170 (diff) |
use absolute path
Change-Id: Ic814cba74dede2f5a079242d0194fe7579e670ab
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index da5d5a785fd9..78836b2f144d 100644 --- a/configure.ac +++ b/configure.ac @@ -12257,9 +12257,9 @@ AC_SUBST(GIT_NEEDED_SUBMODULES) PathFormat "$SRC_ROOT/translations" L10N_MODULE="$formatted_path" WITH_POOR_HELP_LOCALIZATIONS= -if test -d "./translations/source"; then - for l in `ls -1 translations/source`; do - if test ! -d translations/source/$l/helpcontent2; then +if test -d "$SRC_ROOT/translations/source"; then + for l in `ls -1 $SRC_ROOT/translations/source`; do + if test ! -d "$SRC_ROOT/translations/source/$l/helpcontent2"; then WITH_POOR_HELP_LOCALIZATIONS="$WITH_POOR_HELP_LOCALIZATIONS $l" fi done |