diff options
| author | twouters | 2001-05-29 12:06:47 +0000 |
|---|---|---|
| committer | twouters | 2001-05-29 12:06:47 +0000 |
| commit | b573fc9231f44749ef0245c1cec1a1e21ce762ea (patch) | |
| tree | acbc977eee82bda97d4dcc05f47d9ce5b6e33f91 | |
| parent | 6dc979f0acb6e576371e2911d49191981515ef44 (diff) | |
| download | mailman-b573fc9231f44749ef0245c1cec1a1e21ce762ea.tar.gz mailman-b573fc9231f44749ef0245c1cec1a1e21ce762ea.tar.zst mailman-b573fc9231f44749ef0245c1cec1a1e21ce762ea.zip | |
| -rw-r--r-- | Makefile.in | 4 | ||||
| -rw-r--r-- | messages/Makefile.in | 4 | ||||
| -rw-r--r-- | templates/Makefile.in | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index 1c113c526..98cce2242 100644 --- a/Makefile.in +++ b/Makefile.in @@ -129,11 +129,11 @@ clean: $(SUBDIRS) do \ (cd $$d; $(MAKE) clean); \ done - -rm update.log + -rm -f update.log distclean: $(SUBDIRS) @for d in $(SUBDIRS); \ do \ (cd $$d; $(MAKE) distclean); \ done - -rm config.cache config.log config.status Makefile + -rm -f config.cache config.log config.status Makefile diff --git a/messages/Makefile.in b/messages/Makefile.in index b38086be3..40a6d677c 100644 --- a/messages/Makefile.in +++ b/messages/Makefile.in @@ -103,10 +103,10 @@ doinstall: finish: clean: - -rm message.files $(POTFILE) + -rm -f message.files $(POTFILE) distclean: - -rm Makefile */LC_MESSAGES/mailman.{mo,po.old} $(POTFILE) + -rm -f Makefile */LC_MESSAGES/mailman.mo */LC_MESSAGES/mailman.po.old $(POTFILE) message.files: FORCE diff --git a/templates/Makefile.in b/templates/Makefile.in index e63ad42cf..05f00aab2 100644 --- a/templates/Makefile.in +++ b/templates/Makefile.in @@ -60,7 +60,7 @@ install: for d in $(LANGUAGES); \ do \ ../mkinstalldirs $(TEMPLATEDIR)/$$d; \ - for f in $$d/*.{html,txt}; \ + for f in $$d/*.html $$d/*.txt; \ do \ $(INSTALL) -m $(FILEMODE) $$f $(TEMPLATEDIR)/$$d; \ done; \ @@ -71,4 +71,4 @@ finish: clean: distclean: - -rm Makefile + -rm -f Makefile |
