diff options
author | obrien <obrien@FreeBSD.org> | 1999-10-30 08:08:29 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-10-30 08:08:29 +0000 |
commit | 972baf2ed07dd48f4fcb04c4c8b6a0c782b88546 (patch) | |
tree | 0d030d9a32b63f9ee969cf34cdc07e87a089b2c1 /gnu | |
parent | a301513e8024c35e825bcf07cf42e7f82eeb2226 (diff) | |
download | FreeBSD-src-972baf2ed07dd48f4fcb04c4c8b6a0c782b88546.zip FreeBSD-src-972baf2ed07dd48f4fcb04c4c8b6a0c782b88546.tar.gz |
`make' will fail if hash.h exists for some reason and gxx-hash needs to be
rebuilt. Fix this.
Submitted by: bde
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 6100fe7..5e034fa 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -88,7 +88,7 @@ GENSRCS+= gxx-hash.h # make a link the the Cygnus used name for now -- hopes are they will change it hash.h: gxx-hash.h - ln -s ${.ALLSRC} ${.TARGET} + ln -sf ${.ALLSRC} ${.TARGET} GENSRCS+= hash.h #----------------------------------------------------------------------- |