From: W. Trevor King Date: Sat, 3 Apr 2010 22:08:13 +0000 (-0400) Subject: Added commented-out directory touch fix for stale NFS handle issue X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ee860caff48c7f871e94af9f0d97c61f04c4b936;p=course.git Added commented-out directory touch fix for stale NFS handle issue --- diff --git a/Makefile b/Makefile index 52f85a7..97c9827 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,11 @@ install : @for i in $(SUBDIRS); do \ echo "make install in $$i..."; \ (cd $$i; $(MAKE) $(MFLAGS) install); done +# ssh $(INSTALL_USER)@$(INSTALL_HOST) \ +# "find $(INSTALL_DIR) -type d -execdir touch {} \;" +# Directory touches to fix problems like "NFS Stale File Handle" if your +# installation directory is NFS mounted by your webserver. Uncomment it +# if you need to. clean : @for i in $(SUBDIRS); do \