From ee860caff48c7f871e94af9f0d97c61f04c4b936 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 3 Apr 2010 18:08:13 -0400 Subject: [PATCH] Added commented-out directory touch fix for stale NFS handle issue --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) 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 \ -- 2.26.2