svn commit: r244958 - head/usr.sbin/bsdinstall/partedit

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Jan 2 13:25:12 UTC 2013


Author: nwhitehorn
Date: Wed Jan  2 13:25:11 2013
New Revision: 244958
URL: http://svnweb.freebsd.org/changeset/base/244958

Log:
  Make sade actually be a symlink to partedit, as per the commit message in
  r244859, rather than a hardlink. This fixes installation if /usr/sbin
  is on a different filesystem than /usr/libexec.
  
  Submitted by:	se

Modified:
  head/usr.sbin/bsdinstall/partedit/Makefile

Modified: head/usr.sbin/bsdinstall/partedit/Makefile
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/Makefile	Wed Jan  2 07:33:43 2013	(r244957)
+++ head/usr.sbin/bsdinstall/partedit/Makefile	Wed Jan  2 13:25:11 2013	(r244958)
@@ -2,7 +2,8 @@
 
 BINDIR= /usr/libexec/bsdinstall
 PROG=	partedit
-LINKS= ${BINDIR}/partedit ${BINDIR}/autopart ${BINDIR}/partedit /usr/sbin/sade
+LINKS= ${BINDIR}/partedit ${BINDIR}/autopart
+SYMLINKS= ${BINDIR}/partedit /usr/sbin/sade
 LDADD=	-lgeom -lncursesw -lutil -ldialog -lm
 
 PARTEDIT_ARCH= ${MACHINE}


More information about the svn-src-head mailing list