From 8a600b21df2dba355fa076e59d923c70470d27dc Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 4 Sep 2007 21:13:21 +0000 Subject: fix typo --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a085d70..68ec3a2 100644 --- a/Makefile +++ b/Makefile @@ -18,14 +18,14 @@ RPM=$(HOME)/rpm #override CFLAGS += -DPACKAGE=\"$(NAME)\" -DLOCALEDIR=\"$(localedir)\" all: - for d in $(SUBDIRS); do make -C $d $@; done + for d in $(SUBDIRS); do make -C $$d $@; done transfug_oe: transfug_oe.o $(CC) $(CFLAGS) -o transfug_oe transfug_oe.o clean: rm -f core transfug_oe *~ - for d in $(SUBDIRS); do make -C $d $@; done + for d in $(SUBDIRS); do make -C $$d $@; done install_old: transfug_oe $(MAKE) -C po $@ @@ -43,4 +43,4 @@ install: install -d $(SBINDIR) $(ICONSDIR) install -m755 $(NAME) $(SBINDIR) install -m644 $(wildcard data/icons/*.png) $(ICONSDIR) - for d in $(SUBDIRS); do make -C $d $@; done + for d in $(SUBDIRS); do make -C $$d $@; done -- cgit v1.2.1