[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Patch 3 of 4: Avoid 8+3 filename trouble
From: |
Tim Van Holder |
Subject: |
Patch 3 of 4: Avoid 8+3 filename trouble |
Date: |
Sat, 10 Feb 2001 22:52:56 +0100 |
stamp-h1 and stamp-h1T resolve to the same file name on MSDOS,
so use stamp-h1.T instead.
Note that problems will still arise if stamp-h1 and stamp-h10
need to be present in the same directory.
2001-02-10 Tim Van Holder <address@hidden>
* remake-hdr.am (@STAMP@): Use .T as suffix for the
temporary file.
Index: remake-hdr.am
===================================================================
RCS file: /cvs/automake/remake-hdr.am,v
retrieving revision 1.30
diff -u -r1.30 remake-hdr.am
--- remake-hdr.am 2001/01/16 11:15:21 1.30
+++ remake-hdr.am 2001/02/10 21:25:16
@@ -23,17 +23,17 @@
else :; fi
## Explicitly look in srcdir for benefit of non-GNU makes.
@STAMP@: $(srcdir)/@CONFIG_HEADER_IN@ $(top_builddir)/config.status
- @rm -f @STAMP@ @address@hidden
+ @rm -f @STAMP@ @address@hidden
## We used to try to get a real timestamp here. But the fear is that
## that will cause unnecessary cvs conflicts
- @echo timestamp > @address@hidden 2> /dev/null
+ @echo timestamp > @address@hidden 2> /dev/null
cd $(top_builddir) \
&& CONFIG_FILES= address@hidden@ \
$(SHELL) ./config.status
## Creating the timestamp first, and moving it later, helps ensure that
## it will be older than the header file, avoiding needless triggering
## of the rebuild rule.
- @mv @address@hidden @STAMP@
+ @mv @address@hidden @STAMP@
## Explicitly look in srcdir for benefit of non-GNU makes.
## SRC_STAMP takes into account a possible subdir where CONFIG_HEADER_IN is
$(srcdir)/@CONFIG_HEADER_IN@:
@address@hidden(srcdir)/@address@hidden
- Patch 3 of 4: Avoid 8+3 filename trouble,
Tim Van Holder <=
Re: Patch 3 of 4: Avoid 8+3 filename trouble, Tom Tromey, 2001/02/12