ClipIt icon indicating copy to clipboard operation
ClipIt copied to clipboard

Can't make project

Open JojiiOfficial opened this issue 4 years ago • 7 comments

OS: Debian 10 64bit Desktop: Cinnamon ClipIt version: 8ee389d756110e481d441a0b8015699e33dc07bc

After running $ git clone.... $ cd ClipIt $ ./autogen.sh $ ./configure

i was trying to make it using make but i got following error:

make  all-recursive
make[1]: Entering directory '/home/user/git/ClipIt'
Making all in data doc src po
zsh:cd:21: no such file or directory: data doc src po
make[1]: *** [Makefile:440: all-recursive] Error 1
make[1]: Leaving directory '/home/user/git/ClipIt'
make: *** [Makefile:381: all] Error 2

How to fix that?

JojiiOfficial avatar Oct 31 '19 10:10 JojiiOfficial

Try ./configure --with-gtk3 instead of ./configure. You may need to install gtk3 package from your distro repo. Source

shscs911 avatar Nov 02 '19 06:11 shscs911

./configure --with-gtk3 works as well but make still throws the same error

JojiiOfficial avatar Nov 02 '19 11:11 JojiiOfficial

  • Did ./configure --with-gtk3 throw any error?
  • Did you run ./autogen.sh again?
  • You can try deleting the local repo (To clear the compiled files) → clone it again → start from Step 1.

shscs911 avatar Nov 02 '19 12:11 shscs911

No ./configure --with-gtk3 didn't throw any error. I tried the setup steps (starting with step one 1.) with a new clone.

JojiiOfficial avatar Nov 02 '19 13:11 JojiiOfficial

Maybe you're missing some dependencies?

shscs911 avatar Nov 02 '19 15:11 shscs911

I don't get any error which could mean that a dependency is missing.

JojiiOfficial avatar Nov 03 '19 22:11 JojiiOfficial

My error was Makefile:437: recipe for target 'main.o' failed make[2]: *** [main.o] Error 1 make[2]: Leaving directory '/home/liv/APPs/ClipIt-master/src' Makefile:440: recipe for target 'all-recursive' failed make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory '/home/liv/APPs/ClipIt-master' Makefile:381: recipe for target 'all' failed make: *** [all] Error 2

Deleting the dir, unziping it again, running ./autogen.sh + ./configure --with-gtk3 worked to make the project with no errors, thanks!

Obliviann avatar Mar 17 '20 17:03 Obliviann