diff options
author | John Wiegley <johnw@newartisans.com> | 2009-06-02 17:53:55 +0100 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-06-02 17:53:55 +0100 |
commit | e2092d07d85079215a0e068eb46c0d41bbd28a54 (patch) | |
tree | 660cb80669fff5fa166ceadced290c98659482dc | |
parent | 0e9f782a05ab9bc892af40abef84346a16d3baec (diff) | |
download | fork-ledger-e2092d07d85079215a0e068eb46c0d41bbd28a54.tar.gz fork-ledger-e2092d07d85079215a0e068eb46c0d41bbd28a54.tar.bz2 fork-ledger-e2092d07d85079215a0e068eb46c0d41bbd28a54.zip |
Extended Makefile fix, to accomodate newest automake
-rwxr-xr-x | acprep | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -996,6 +996,7 @@ class PrepareBuild(CommandLineApp): line = re.sub('^\t(\$\((LIBTOOL|CXX)\).*?\.(cc|cpp))$', '\t@echo " " CXX \$@;\\1 > /dev/null', line) line = re.sub('^\tmv -f', '\t@mv -f', line) + line = re.sub('^\t\$\(am__mv\)', '\t@$(am__mv)', line) line = re.sub('^\t(\$\((.*?)LINK\).*)', '\t@echo " " LD \$@;\\1 > /dev/null', line) Makefile_new.write(line) |