~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)

> When you use flat string on Windows for base part of file names then all
> derived file names is always representing as flat string. On Linux/Cygwin as
> I can see in situations when path cannot be represented as flat string (or in
> ascii encoding?) it silently converted to unicode. As result we have
> different behaviour with non-ascii (non-english) file names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
check:
4
4
        ./bzr selftest $(tests)
5
 
        @echo "Running all tests with no locale."
6
 
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest $(tests)
7
 
 
8
 
check-msgeditor:
9
 
        ./bzr --no-plugins selftest -v msgeditor
10
5
 
11
6
clean: 
12
7
        ./setup.py clean
13
 
        -find . -name "*.pyc" | xargs rm
14
 
        -find . -name "*.pyo" | xargs rm
 
8
        find . -name "*.pyc" | xargs rm
15
9
        rm -rf test????.tmp
16
10
 
17
11
.PHONY: all