Hello. I recently downloaded, configured and executed make on libjpeg.
Until there all worked well. Then suddenly when executing what shall be the simplest part, it returned this error message:
Quote:
make install
/usr/bin/install -c cjpeg /media/34GB/Arquivos-de-Programas-Linux/Jpeg-6b//bin/cjpeg
/usr/bin/install: cannot create regular file `/media/34GB/Arquivos-de-Programas-Linux/Jpeg-6b//bin/cjpeg': No such file or directory
make: *** [install] Error 1
I have no idea as to why this problem is happening, since cjpeg was successfully built.
This is the installation rules of the makefile :
Anyone can see something wrong (and how to fix it)?. If there is nothing wrong there, guess I will try to manually do what the Makefile should have done and see if the program that need it will work.
Now, the error msg seems pretty clear:
Does the target directory exist?
Well, no, but isn't this "install" job to do so? I mean, never before I did a "make install" that had issues to create directories.
When I read this message, I thought it was referring to the cjpeg file. Are you sure isn't about it?
Edited: Created a /bin dir and this error message was left behind. A new error message complaining about dir man/man1 showed up. Created that dir and this error message also disappeared. However, the install procedure is not creating and copying the includes and the .a lib file
I'm sorry, I can't tell. I don't know nor see your system nor install command / facility / process. If e.g. a cp command fails with a "create" error, it's less probable to be with the source file, but with the target directory / file.
Hello.
System : opensuse leap 42.3
I have a bash script that build a text file.
I would like the last command doing :
print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt
where :
print_cmd ::= some printing... (1 Reply)
Hi,
I have line in input file as below:
3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL
My expected output for line in the file must be :
"1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL"
Can someone... (7 Replies)
This is the script:
#!/bin/sh
if ; then rm -rf /usr/share/WallpaperChanger; fi
if ; then rm -rf /usr/bin/wallch; fi;
if ; then rm -rf /usr/share/applications/wallch.desktop; fi
if ; then rm -rf /usr/share/doc/wallch; fi
if ; then rm -rf /usr/share/man/man1/wallch.1.gz; fi
echo "Delete... (4 Replies)
I have one syntax to find something from desktop on server, the script is as below, I actually speaking don't know anything in this script.
It creates a window, where i get a drop down boxes with folder names given below and a blank box where i have to put the folder name to search. and then I... (2 Replies)
hi there, could use some basic PATH advice, i think, or something
find sometimes work, but which hasn't ever seemed to. for years!
what am i doing wrong that the commands which and find rarely work?
they used to work on the workstations i used ages ago...
running 10.5.8 because i... (4 Replies)
Hello,
I am new to this forums and this is my first "asking help" message!
i have 2 problems:
1- for unknown reasons the "source" command is not avalable in my system (UBUNTU). i can't either see it in my bin directory!
2- again for unknown reasons the "login.cl" file in the home... (0 Replies)
I have written following code to do: ls -l | wc -w, it works:
but when there are not only a single "|", if there are more such as:
ls -l | sort -r | sort | sort -r, This program does not work, i want to know how could i deal with it when there are more "|", another situation is that, if it mixes... (2 Replies)