summaryrefslogtreecommitdiff
path: root/codec
diff options
context:
space:
mode:
authorWinfried <szukw000@arcor.de>2011-01-07 03:20:58 +0000
committerWinfried <szukw000@arcor.de>2011-01-07 03:20:58 +0000
commit431f559f49afe99575d99b9c0f119fc04d521cad (patch)
tree5990a7a9bc0e6ff9a1e6aff2bc50eef360c2a166 /codec
parent2c38002242d2126bd848186c10341f1da1821cb8 (diff)
changed report code in Makefile.am
Diffstat (limited to 'codec')
-rw-r--r--codec/Makefile.am4
-rw-r--r--codec/Makefile.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/codec/Makefile.am b/codec/Makefile.am
index 819b91a3..3f82c1b4 100644
--- a/codec/Makefile.am
+++ b/codec/Makefile.am
@@ -22,6 +22,6 @@ REPBIN=$(bin_PROGRAMS)
all-local:
$(INSTALL) -d ../../bin
$(INSTALL) $(bin_PROGRAMS) ../../bin
- @(for f in ${REPBIN} ; do \
- echo "Installing: ${prefix}/bin/$$f" >> ../.report.txt ; \
+ @(for file in ${REPBIN} ; do \
+ echo "Installing: ${prefix}/bin/$${file}" >> ../.report.txt ; \
done)
diff --git a/codec/Makefile.in b/codec/Makefile.in
index dd4b2f87..47ccb994 100644
--- a/codec/Makefile.in
+++ b/codec/Makefile.in
@@ -555,8 +555,8 @@ uninstall-am: uninstall-binPROGRAMS
all-local:
$(INSTALL) -d ../../bin
$(INSTALL) $(bin_PROGRAMS) ../../bin
- @(for f in ${REPBIN} ; do \
- echo "Installing: ${prefix}/bin/$$f" >> ../.report.txt ; \
+ @(for file in ${REPBIN} ; do \
+ echo "Installing: ${prefix}/bin/$${file}" >> ../.report.txt ; \
done)
# Tell versions [3.59,3.63) of GNU make to not export all variables.