removed faulty Reconf target which was causing build failures. Need to make it work...
authorAlexandra Ellwood <lxs@mit.edu>
Thu, 3 Mar 2005 21:03:00 +0000 (21:03 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Thu, 3 Mar 2005 21:03:00 +0000 (21:03 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-4@17108 dc483132-0cff-0310-8789-dd5450dbe970

src/mac/MacOSX/Scripts/Kerberos5BuildSystem.jam

index 3f3911842af3c576abc76937b0852ca38269025f..de3f1bae60aecfb42be1f8bcd645004509b64fa7 100644 (file)
@@ -28,21 +28,10 @@ CONFIGURE_LDFLAGS = "LDFLAGS=$(CONFIGURE_LDFLAGS:)" ;
 # script doesn't need to know how the reconf and configure scripts work.
 #
 
-# Reconf <configure> : <configure.in>
-rule Reconf
-{
-    DEPENDS "$(1)" : "$(1).in" "$(Reconf)" ;
-}
-actions Reconf
-{
-    cd "$(Sources)" && /bin/sh "$(Reconf)" -f
-}
-
 # Configure <makefile> : <configure>
 rule Configure
 {
     DEPENDS "$(1)" : "$(2)" ;
-    Reconf "$(2)" : "$(2).in" ;
     Clean.Remove clean "$(1:D)" ;
 }
 actions Configure