Replaced {,} expansions, those only work with SHELL = /bin/bash,

not with a POSIX-compliant shell.
This commit is contained in:
paul 2000-09-08 10:41:54 +00:00
parent 70f8ff11e5
commit ab15d0a3ab
1 changed files with 10 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## $Id: Makefile.in,v 1.182 2000/09/05 17:27:36 paul Exp $
## $Id: Makefile.in,v 1.183 2000/09/08 10:41:54 paul Exp $
##
## ISDN accounting for isdn4linux.
##
@ -19,6 +19,10 @@
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
##
## $Log: Makefile.in,v $
## Revision 1.183 2000/09/08 10:41:54 paul
## Replaced {,} expansions, those only work with SHELL = /bin/bash,
## not with a POSIX-compliant shell.
##
## Revision 1.182 2000/09/05 17:27:36 paul
## runtime selection of country behaviour; version 4.42
##
@ -1558,7 +1562,7 @@ clean:
distclean: clean
-rm -f $(MANPAGES)
-rm -f $(PROGS) .depend config.h config.status config.cache \
config.log Makefile confdefs.h policy.h *~ *.gdbm
config.log Makefile confdefs.h policy.h *~ *.gdbm *.cdb *.db
set -e; for i in `echo $(SUBDIRS)`; do $(MAKE) -C $$i distclean; done
ifeq (.depend,$(wildcard .depend))
@ -1589,7 +1593,9 @@ uninstall: rootperm
$(DESTDIR)$(MAN5DIR)/isdnformat$(MAN5EXT) \
$(DESTDIR)$(DATADIR)/country-$(NATION).dat \
$(DESTDIR)$(DATADIR)/rate-$(NATION).dat \
$(DESTDIR)$(DATADIR)/dest.{gdbm,db,cdb}
$(DESTDIR)$(DATADIR)/dest.gdbm \
$(DESTDIR)$(DATADIR)/dest.db \
$(DESTDIR)$(DATADIR)/dest.cdb
installdirs: rootperm
@ -1673,7 +1679,7 @@ install-data:
$(INSTALL_DATA) country-de.dat $(DESTDIR)$(DATADIR)/country.dat
$(INSTALL_DATA) rate-$(NATION).dat $(DESTDIR)$(DATADIR)
$(INSTALL_DATA) holiday-$(NATION).dat $(DESTDIR)$(DATADIR)
@for f in `ls zone-$(NATION)-*.{gdbm,db,cdb} tools/dest/dest.{gdbm,db,cdb} 2>/dev/null` ; do \
@for f in `ls zone-$(NATION)-*.gdbm zone-$(NATION)-*.db zone-$(NATION)-*.cdb tools/dest/dest.gdbm tools/dest/dest.db tools/dest/dest.cdb 2>/dev/null` ; do \
$(INSTALL_DATA) $$f $(DESTDIR)$(DATADIR); \
echo Installing $(DESTDIR)$(DATADIR)/$$f; \
done