Re: about -lcurses

2018-11-10 Thread Hy Od
I'm Guy! Le 10 nov. 2018 12:59, "Hy Od" a écrit : > Hi, > for me PREFIX and prefix seems to be the same! > > I have sent a patch of ne package to guix-patch maillist! > Le 10 nov. 2018 11:46, "Pierre Neidhardt" a écrit : > >> >> > You also have a small mistake here >> > >> > :

Re: about -lcurses

2018-11-10 Thread Hy Od
Hi, for me PREFIX and prefix seems to be the same! I have sent a patch of ne package to guix-patch maillist! Le 10 nov. 2018 11:46, "Pierre Neidhardt" a écrit : > > > You also have a small mistake here > > > > : #:make-flags (list (string-append "prefix=" (assoc-ref > >

Re: about -lcurses

2018-11-10 Thread Mathieu Othacehe
Hi Pierre, This might not be correct, depending on which Make and the Makefile. > Lowercase "prefix" is actually the right directory variable for GNU Make. > See the "(make) Directory Variables" info page. > In that precise case, without an upper case PREFIX, it won't build (check the root

Re: about -lcurses

2018-11-09 Thread guy fleury
thank you very much, this is what i did (snippet ;; use lncurses instead of lcurses '(begin (substitute* "src/makefile" (("-lcurses") "-lncurses"))

Re: about -lcurses

2018-11-09 Thread Maxim Cournoyer
Hello, guy fleury writes: > hi all, > > i try to package a editor "nice editor": > i got this error: > > ld: cannot find -lcurses > > on debian it works because -lcurses is a symlink to -lncurses(if i am > not wrong) > > is there a solution without make a patch to the makifile? If

Re: about -lcurses

2018-11-09 Thread Mathieu Othacehe
Hi Guy, Your package is almost working, the important thing was to specified "ncurses" as an input like you did. > on debian it works because -lcurses is a symlink to -lncurses(if i am > not wrong) Yes, I guess they are doing some kind of symlinking. To make it work, you can replace -lcurses

about -lcurses

2018-11-09 Thread guy fleury
hi all, i try to package a editor "nice editor": i got this error: ld: cannot find -lcurses on debian it works because -lcurses is a symlink to -lncurses(if i am not wrong) is there a solution without make a patch to the makifile? here is my package definition: