diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-21 21:51:22 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-21 21:51:22 -0400 |
commit | 4b159527a51a2e2006da2e29bc936e05b970ecdd (patch) | |
tree | 7ea465956cdd0c048c7bc9c8434f3ffcada8963b /acprep | |
parent | 6f6c0d722ca436137693dd2b8d4de500783406f5 (diff) | |
download | fork-ledger-4b159527a51a2e2006da2e29bc936e05b970ecdd.tar.gz fork-ledger-4b159527a51a2e2006da2e29bc936e05b970ecdd.tar.bz2 fork-ledger-4b159527a51a2e2006da2e29bc936e05b970ecdd.zip |
Removed a bash-ism from acprep
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ sh autogen.sh # configure the template files -if [[ ! -f po/Makevars ]]; then +if [ ! -f po/Makevars ]; then mv po/Makevars.template po/Makevars fi git ls-files '*.cc' '*.h' | egrep '^(src|python)/' > po/POTFILES.in |