swarm-support
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Make error


From: Marcus G. Daniels
Subject: Re: Make error
Date: 21 Jul 1998 08:32:32 -0700

making defobj.xm defobj.xt defobj.xc
no files with .m suffix found to match any .o file in $(OBJECTS)
make[3]: *** [classes.h] Error 1

Try this:

cd $SWARMSRCDIR/src/defobj
patch -p1 < the-stuff-below


*** swarm-1.2/src/defobj/make-h2x       Wed Jun 24 11:08:16 1998
--- /opt/src/mgd/src/Swarm/swarm/src/defobj/make-h2x    Mon Jul  6 09:32:18 1998
***************
*** 99,106 ****
  # extract all implemented classes into temporary file

  for object in $OBJECTS; do
!   base=`basename $object .o`
!   test $base = $object && base=`basename $object .lo`
    source=$srcdir/${base}.m
    if [ -f $source ]; then sources="$sources $source"; fi
  done
--- 99,105 ----
  # extract all implemented classes into temporary file

  for object in $OBJECTS; do
!   base=`echo $object | sed -e 's/\.lo$//' -e 's/\.o$//'`
    source=$srcdir/${base}.m
    if [ -f $source ]; then sources="$sources $source"; fi
  done  

                  ==================================
   Swarm-Support is for discussion of the technical details of the day
   to day usage of Swarm.  For list administration needs (esp.
   [un]subscribing), please send a message to <address@hidden>
   with "help" in the body of the message.
                  ==================================


reply via email to

[Prev in Thread] Current Thread [Next in Thread]