Menu

#5 missing destination file operand

open
nobody
None
5
2006-11-03
2006-11-03
No

I have been runnin the following line in terminal on
Slackware 11 with the following results and I would
like to know how to go about fixing it.

root@****:~/imc-1.2.50# make install -B
for i in 'lib etc certs bin doc plugins libexec'; do \
for j in `find $i`; do \
if [ -f $j ]; then \
/usr/bin/install -c -D -m0644
$j /opt/IDEALX/imc/$j; \
fi; \
done; \
done;
for i in 'bin'; do \
for j in `find $i`; do \
if [ -f $j ]; then \
/usr/bin/install -c -D -m0755
$j /opt/IDEALX/imc/$j; \
fi; \
done; \
done;
/usr/bin/install -c -D -m0755
/opt/IDEALX/imc/etc/init.d/imc-server
/usr/bin/install: missing destination file operand
after `/opt/IDEALX/imc/etc/init.d/imc-server'
Try `/usr/bin/install --help' for more information.
make: *** [install] Error 1

Discussion

  • Daniel Llewellyn

    Logged In: YES
    user_id=563899
    Originator: NO

    /usr/bin/install -c -D -m0755
    $j /opt/IDEALX/imc/$j; \

    the problem is here.. there should be a "\" at the end of the /usr/bin/install line

     
  • Daniel Llewellyn

    Logged In: YES
    user_id=563899
    Originator: NO

    in fact, there are two such lines that should be fixed - both /usr/bin/install lines

     

Log in to post a comment.

MongoDB Logo MongoDB