Path: utzoo!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!tut.cis.ohio-state.edu!AI.MIT.EDU!tiemann From: tiemann@AI.MIT.EDU (Micheal Tiemann) Newsgroups: gnu.utils.bug Subject: [MAILER-DAEMON@ai.mit.edu: Returned mail: User unknown] Message-ID: <9001100339.AA03859@apple-gunkies.ai.mit.edu> Date: 10 Jan 90 03:39:43 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 81 Return-Path: From: MAILER-DAEMON@ai.mit.edu Date: Tue, 9 Jan 90 22:29:16 EST Subject: Returned mail: User unknown To: tiemann ----- Transcript of session follows ----- >>> RCPT To: <<< 550 ... User unknown 550 bug-binutils... User unknown ----- Unsent message follows ----- Return-Path: Received: by apple-gunkies.ai.mit.edu (3.2/AI-4.10) id AA03847; Tue, 9 Jan 90 22:29:16 EST Date: Tue, 9 Jan 90 22:29:16 EST Message-Id: <9001100329.AA03847@apple-gunkies.ai.mit.edu> To: bug-binutils Subject: mv is broken? My way of making a TAGS file without going through too much detail is this: TAGS: force -mkdir temp -mv cplus-tab.c cexp.c c-*.c *.y insn-*.[ch] gen*.c temp etags *.h *.c mv temp/* . rmdir temp It is defeated by GNU mv: tiemann@apple-gunkies>make TAGS mkdir temp mv cplus-tab.c cexp.c c-*.c *.y insn-*.[ch] gen*.c temp mv: cannot stat `cexp.c', not moved: No such file or directory mv: cannot stat `c-*.c', not moved: No such file or directory etags *.h *.c mv temp/* . mv: cannot stat `temp/gencodes.c', not moved: No such file or directory mv: cannot stat `temp/genconfig.c', not moved: No such file or directory mv: cannot stat `temp/genemit.c', not moved: No such file or directory mv: cannot stat `temp/genextract.c', not moved: No such file or directory mv: cannot stat `temp/genflags.c', not moved: No such file or directory mv: cannot stat `temp/genoutput.c', not moved: No such file or directory mv: cannot stat `temp/genpeep.c', not moved: No such file or directory mv: cannot stat `temp/genrecog.c', not moved: No such file or directory rmdir temp rmdir: temp: Directory not empty make: *** [TAGS] Error 1 tiemann@apple-gunkies>ls temp gencodes.c genemit.c genflags.c genpeep.c genconfig.c genextract.c genoutput.c genrecog.c tiemann@apple-gunkies>ls genemit.c ls: genemit.c: No such file or directory tiemann@apple-gunkies>mv temp/* . mv: cannot stat `temp/gencodes.c', not moved: No such file or directory mv: cannot stat `temp/genconfig.c', not moved: No such file or directory mv: cannot stat `temp/genemit.c', not moved: No such file or directory mv: cannot stat `temp/genextract.c', not moved: No such file or directory mv: cannot stat `temp/genflags.c', not moved: No such file or directory mv: cannot stat `temp/genoutput.c', not moved: No such file or directory mv: cannot stat `temp/genpeep.c', not moved: No such file or directory mv: cannot stat `temp/genrecog.c', not moved: No such file or directory tiemann@apple-gunkies>ls -l temp total 16 lrwxrwxrwx 1 tiemann 17 Jan 9 16:36 gencodes.c -> ../gcc/gencodes.c lrwxrwxrwx 1 tiemann 18 Jan 9 16:36 genconfig.c -> ../gcc/genconfig.c lrwxrwxrwx 1 tiemann 16 Jan 9 16:36 genemit.c -> ../gcc/genemit.c lrwxrwxrwx 1 tiemann 19 Jan 9 16:36 genextract.c -> ../gcc/genextract.c lrwxrwxrwx 1 tiemann 17 Jan 9 16:36 genflags.c -> ../gcc/genflags.c lrwxrwxrwx 1 tiemann 18 Jan 9 16:36 genoutput.c -> ../gcc/genoutput.c lrwxrwxrwx 1 tiemann 16 Jan 9 16:36 genpeep.c -> ../gcc/genpeep.c lrwxrwxrwx 1 tiemann 17 Jan 9 16:36 genrecog.c -> ../gcc/genrecog.c tiemann@apple-gunkies>which mv /usr/local/bin/mv tiemann@apple-gunkies>/bin/mv temp/*.c . tiemann@apple-gunkies> This was unexpected. Michael