##// END OF EJS Templates
deb: avoid use of [[ in 'rules' file...
Kyle Lippincott -
r47602:2fd5e005 default
parent child Browse files
Show More
@@ -96,7 +96,7 b' override_dh_auto_install: $(DEB_HG_PYTHO'
96 96 cp contrib/bash_completion "$(CURDIR)"/debian/mercurial/usr/share/bash-completion/completions/hg
97 97 mkdir -p "$(CURDIR)"/debian/mercurial/usr/share/zsh/vendor-completions
98 98 cp contrib/zsh_completion "$(CURDIR)"/debian/mercurial/usr/share/zsh/vendor-completions/_hg
99 if [[ "$(DEB_HG_CHG_BY_DEFAULT)" -eq 1 ]]; then \
99 if [ "$(DEB_HG_CHG_BY_DEFAULT)" -eq 1 ]; then \
100 100 mkdir -p "$(CURDIR)"/debian/mercurial/usr/lib/mercurial; \
101 101 mv "$(CURDIR)"/debian/mercurial/usr/bin/hg "$(CURDIR)"/debian/mercurial/usr/lib/mercurial/hg; \
102 102 ln -s chg "$(CURDIR)"/debian/mercurial/usr/bin/hg; \
General Comments 0
You need to be logged in to leave comments. Login now