diff options
| author | Winfried <szukw000@arcor.de> | 2011-01-07 03:20:58 +0000 |
|---|---|---|
| committer | Winfried <szukw000@arcor.de> | 2011-01-07 03:20:58 +0000 |
| commit | 7441340ab5422ce2c85f4b0e42f44b64cd855445 (patch) | |
| tree | cb78e3e7282a857f01d9db5e420ef22253649164 /Makefile.am | |
| parent | 50b3b5c9912dee7c8038d34da0e966d72906d6f7 (diff) | |
changed report code in Makefile.am
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 9d5aa9b6..5805b7fe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,8 +3,8 @@ SUBDIRS = libopenjpeg codec mj2 @jpwl_dir@ @jp3d_dir@ doc clean-local: @rm -rf bin - @l='$(SUBDIRS)'; for f in $$l ; do \ - rm -f $$f/.report.txt ; \ + @list='$(SUBDIRS)'; for dir in $${list} ; do \ + rm -f $${dir}/.report.txt ; \ done distclean-local: clean-local @@ -13,8 +13,8 @@ pkgconf_dir = /usr/lib/pkgconfig install-data-hook: @echo "" - @l='$(SUBDIRS)'; for f in $$l ; do \ - cat $$f/.report.txt ; \ + @list='$(SUBDIRS)'; for dir in $${list} ; do \ + cat $${dir}/.report.txt ; \ done @echo "" @echo "Installing: libopenjpeg1.pc $(pkgconf_dir)" |
