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
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
Logged In: YES
user_id=563899
Originator: NO
in fact, there are two such lines that should be fixed - both /usr/bin/install lines