From 82cd5ef56bbf200b878329aa7e9460434f8e2b8b Mon Sep 17 00:00:00 2001 From: hno <> Date: Wed, 21 May 2003 13:19:29 +0000 Subject: [PATCH] Attempt to makedist more portable --- icons/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/icons/Makefile.am b/icons/Makefile.am index a82f3d12a9..f966cabc32 100644 --- a/icons/Makefile.am +++ b/icons/Makefile.am @@ -1,4 +1,4 @@ -# $Id: Makefile.am,v 1.7 2003/02/21 20:52:51 hno Exp $ +# $Id: Makefile.am,v 1.8 2003/05/21 07:19:29 hno Exp $ # ICON1 = anthony-binhex.gif @@ -43,7 +43,8 @@ $(ICON1): ## @$(SHELL) -c "cd $(srcdir); $(SHELL) icons.shar" icons.shar: - shar --no-timestamp $(ICON1) $(ICON2) > $@ + shar --no-timestamp $(ICON1) $(ICON2) > $@ 2>/dev/null || \ + shar $(ICON1) $(ICON2) > $@ ## DEFAULT_ICON_DIR = $(sysconfdir)/icons -- 2.47.3