diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-01-06 10:56:11 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-01-06 10:56:11 +0000 |
commit | d20b2763ab5bd64229429ec02375fafff54f2ac6 (patch) | |
tree | 8ce6917a05f92e6048fac55c416963211c2a9bc3 | |
parent | 44cf0d51d6a5dd18c9ca0e76be3be1d2f394b98b (diff) |
"fix" make distclean
-rw-r--r-- | app/xlockmore/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/xlockmore/Makefile.in b/app/xlockmore/Makefile.in index 679c5c8b8..c2c2dbc4c 100644 --- a/app/xlockmore/Makefile.in +++ b/app/xlockmore/Makefile.in @@ -9,7 +9,7 @@ SUBDIRS = xlock modes/glx modes xmlock xglock MAKE_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; $(MAKE) $@ ) ; done # convenient not to use configure just to clean -MAKEIN_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; sed s/@MODULES@/\#/ Makefile.in > Makefile ; $(MAKE) $@ ) ; done +MAKEIN_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; sed s/\@MODULES\@/\#/ Makefile.in > Makefile ; $(MAKE) $@ ) ; done all : @$(MAKE_SUBDIR) |