You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sa...@locus.apache.org on 2000/09/23 10:37:24 UTC

cvs commit: apache-2.0/src/build bsd_makefile

sascha      00/09/23 01:37:23

  Modified:    src/build bsd_makefile
  Log:
  Don't use $0 for creating tmpfile as it will contain "/".
  
  Revision  Changes    Path
  1.2       +1 -1      apache-2.0/src/build/bsd_makefile
  
  Index: bsd_makefile
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/build/bsd_makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -u -r1.1 -r1.2
  --- bsd_makefile	2000/09/22 17:07:47	1.1
  +++ bsd_makefile	2000/09/23 08:37:23	1.2
  @@ -60,7 +60,7 @@
   
   test -f bsd_converted && exit 0
   
  -tmpfile=`mktemp /tmp/$0.XXXXXX` || exit 1
  +tmpfile=`mktemp /tmp/bsd_makefile.XXXXXX` || exit 1
   for i in build/*.mk; do
       sed 's/^include \(.*\)/.include "\1"/' $i >$tmpfile \
           && cp $tmpfile $i