diff options
author | tkikuchi <> | 2004-10-02 07:44:41 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-10-02 07:44:41 +0000 |
commit | 7449d8f61c76fa5920730f0155e6076956d55d7f (patch) | |
tree | acec840a6fdb18c97dd45c66afc362e31b8b0978 /misc | |
parent | cd2f1ba1b945512c887470cd8806c206a7038e0f (diff) | |
download | mailman2-7449d8f61c76fa5920730f0155e6076956d55d7f.tar.gz mailman2-7449d8f61c76fa5920730f0155e6076956d55d7f.tar.xz mailman2-7449d8f61c76fa5920730f0155e6076956d55d7f.zip |
Closing:
[ 799166 ] install-sh doesn't support multiple sources
[ 946554 ] configure does not check for gettext/msgmerge
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/Makefile.in b/misc/Makefile.in index 56ad8822..15d11bd5 100644 --- a/misc/Makefile.in +++ b/misc/Makefile.in @@ -77,7 +77,10 @@ all: install: install-other install-packages install-other: - $(INSTALL) -m $(FILEMODE) $(ICONS) $(DESTDIR)$(ICONDIR) + for i in $(ICONS); \ + do \ + $(INSTALL) -m $(FILEMODE) $$i $(DESTDIR)$(ICONDIR); \ + done for d in $(PATHSDIRS); \ do \ dir=$(DESTDIR)$(prefix)/$$d; \ |