Quedale / OnvifDeviceManager

Onvif Device Manager for Linux
GNU General Public License v3.0
89 stars 20 forks source link

Error with Make Install #12

Closed Starlord0006 closed 8 months ago

Starlord0006 commented 1 year ago

All the process goes through but at the MAKE INSTALL I get:

make[1]: Nothing to be done for 'install-data-am'. make[1]: Leaving directory '/home/starlord/OnvifDeviceManager'

Any ideas I'm running Ubuntu 22.04.3 LTS

Thanks

Quedale commented 1 year ago

Good day!

Those aren't actual errors, but expected log output. The reason is that the Makefile doesn't have any data to install. (Just an executable)

This is the complete output :

make[1]: Entering directory '/home/quedale/git/OnvifDeviceManager'
 /usr/bin/mkdir -p '/home/quedale/git/OnvifDeviceManager/dist/bin'
  /bin/bash ./libtool   --mode=install /usr/bin/install -c onvifmgr '/home/quedale/git/OnvifDeviceManager/dist/bin'
libtool: install: /usr/bin/install -c onvifmgr /home/quedale/git/OnvifDeviceManager/dist/bin/onvifmgr
make[1]: Nothing to be done for 'install-data-am'.
make[1]: Leaving directory '/home/quedale/git/OnvifDeviceManager'

You should have the executable available here /home/starlord/OnvifDeviceManager/dist/bin/onvifmgr assuming that you set the install prefix to --prefix=$(pwd)/dist.

Quedale commented 8 months ago

Almost everything was reviewed and updated since this issue was reported. Closing since it is most likely out-dated by now.

Feel free to open a new issue if you are still experiencing it.