svn commit: samba r15156 - in branches/SAMBA_4_0/source: . heimdal_build

jpeach at samba.org jpeach at samba.org
Fri Apr 21 00:07:55 GMT 2006


Author: jpeach
Date: 2006-04-21 00:07:50 +0000 (Fri, 21 Apr 2006)
New Revision: 15156

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15156

Log:
For some reason, ln -sf doesn't appear to work as expected on IRIX. Replace
this with an explicit rm.

Modified:
   branches/SAMBA_4_0/source/heimdal_build/config.mk
   branches/SAMBA_4_0/source/static_deps.mk


Changeset:
Modified: branches/SAMBA_4_0/source/heimdal_build/config.mk
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/config.mk	2006-04-21 00:04:21 UTC (rev 15155)
+++ branches/SAMBA_4_0/source/heimdal_build/config.mk	2006-04-21 00:07:50 UTC (rev 15156)
@@ -443,7 +443,7 @@
 $(patsubst heimdal/lib/des/%.h,heimdal/lib/des/hcrypto/%.h,$(wildcard heimdal/lib/des/*.h)): heimdal/lib/des/hcrypto
 
 heimdal/lib/des/hcrypto: 
-	ln -sf ./../des $@
+	rm -f $@; ln -s ./../des $@
 
 clean::	
 	@-rm -f heimdal/lib/roken/vis.h heimdal/lib/roken/err.h

Modified: branches/SAMBA_4_0/source/static_deps.mk
===================================================================
--- branches/SAMBA_4_0/source/static_deps.mk	2006-04-21 00:04:21 UTC (rev 15155)
+++ branches/SAMBA_4_0/source/static_deps.mk	2006-04-21 00:07:50 UTC (rev 15156)
@@ -27,7 +27,7 @@
        heimdal/lib/krb5/heim_err.h \
        heimdal/lib/krb5/k524_err.h \
        heimdal/lib/krb5/krb5_err.h
-	ln -fs ./../des heimdal/lib/des/hcrypto
+	rm -f heimdal/lib/des/hcrypto ; ln -s ./../des heimdal/lib/des/hcrypto
 
 proto: basics
 basics: include/includes.h \



More information about the samba-cvs mailing list