Le 16/12/2013 17:18, Cliff McDiarmid a écrit : > Hi > > Can someone tell me what this is refering to? Running the svn version and > after completing the options I get this error. > > mkdir: missing operand > Try 'mkdir --help' for more information. > > ERROR: Error 1 at ./jhalfs line 337! > > There appears no difference in this line, of the svn version, than the stable > version. > > thanks > > MAC Looks like line 337 is:
mkdir -p $JHALFSDIR so it appears that $JHALFSDIR is empty... Normally, that variable is set by sourcing the file names "configuration". What is the output of: grep JHALFSDIR configuration On my system it returns: JHALFSDIR="$BUILDDIR/$SCRIPT_ROOT" LOGDIR="$JHALFSDIR/$LOGDIRBASE" TESTLOGDIR="$JHALFSDIR/$TESTLOGDIRBASE" FILELOGDIR="$JHALFSDIR/$FILELOGDIRBASE" MKFILE="$JHALFSDIR/Makefile" and "grep SCRIPT_ROOT configuration" returns: SCRIPT_ROOT="jhalfs" JHALFSDIR="$BUILDDIR/$SCRIPT_ROOT" Regards Pierre -- http://linuxfromscratch.org/mailman/listinfo/alfs-discuss FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
