* depfix.sed: Ignore header files under /mit/gnu/
authorKen Raeburn <raeburn@mit.edu>
Sat, 15 Jun 2002 08:46:56 +0000 (08:46 +0000)
committerKen Raeburn <raeburn@mit.edu>
Sat, 15 Jun 2002 08:46:56 +0000 (08:46 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14518 dc483132-0cff-0310-8789-dd5450dbe970

src/util/ChangeLog
src/util/depfix.sed

index 060b85b0e8cda514bb08a9e47cfc99e0b6fd8159..224aa73356a6998791dc17895576f56292c27b19 100644 (file)
@@ -1,3 +1,7 @@
+2002-06-15  Ken Raeburn  <raeburn@mit.edu>
+
+       * depfix.sed: Ignore header files under /mit/gnu/.
+
 2002-04-25  Ezra Peisach  <epeisach@bu.edu>
 
        * reconf: Only for autoreconf 2.53, create a private copy of
index 561d08d7ce930f9ec2cd607c2df1c87dcd8bd45d..2c05d0b815789ec60655d2efe2a343a236953783 100644 (file)
@@ -28,9 +28,12 @@ s/  */ /g
 s;^\([a-zA-Z0-9_\-]*\).o:;$(OUTPRE)\1.$(OBJEXT):;
 
 # delete system-specific or compiler-specific files from list
+# (the last two are pathnames used at MIT -- if you have a local
+#  gcc installation in some odd place, you may need to customize this)
 s;/usr/include/[^ ]* ;;g
 s;/usr/lib/[^ ]* ;;g
 s;/mit/cygnus[^ ]* ;;g
+s;/mit/gnu/[^ ]* ;;g
 
 # remove foo/../ sequences
 :dotdot