LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-26-2013, 04:40 AM   #1
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Rep: Reputation: 76
configure: error: cannot find install-sh or install.sh in . ./.. ./../..


Hi: I have a package, avra-1.3.0.tar.bz2. I unzipped and untarred, went to the src/ directory, where configure and the source files are and ran configure, as instructed by the INSTALL file. But I get
Code:
$ ./configure
configure: error: cannot find install-sh or install.sh in . ./.. ./../..
$
But there is no install-sh or install.sh in all of the package! What can this configure be looking for?
 
Old 08-26-2013, 05:03 AM   #2
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,096

Rep: Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173
I haven't looked deep in it, but maybe this can give you some hints.
 
Old 08-26-2013, 05:12 AM   #3
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
Instructions are in the doc directory:
Quote:
To compile avra you need gcc and the automake utilities. These will create a ./configure script that evaluates your system enviroment. To get the AVRA executable, you have to issue the following commands:

aclocal autoconf automake -a ./configure make && make install
I tried, it works but 'make' returned missing files, so you'll have to make some adjustments to the Makefile, I guess.
 
Old 08-26-2013, 05:19 AM   #4
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Quote:
cannot find install-sh or install.sh ..
That's what `bootstrap' is for : aclocal && autoconf && automake -a
( Please read the "text file" bootstrap.)

This will do : $ sh bootstrap
... and the links to /usr/share/automake*/install-sh etc. etc. are created.

EDIT : Beaten by @ Didier Spaier.

-
 
Old 08-26-2013, 05:52 AM   #5
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Thanks, ponce. This is a bit odd. I downloaded the previous version (http://sourceforge.net/projects/avra/files/) and it already has, along with the sources, avra, the executable file (it's an assembler for the AVR family of Atmel microcontrollers). I ran it and it works. But there are no manuals. Instead, the new version, the one I ran first, has a 'Build' file that says:

#!/usr/bin/env bash
#
# AVRA Build and Release helper script
# source this in the root directory of avra and then invoke one of the
# functions to create a release. This is very hackish, but makes life easier.
VERSION="1.3.0" # Change to new version
OS_TYPE="source" # Change to linux, mingw32, apple or source

# This doesn't normaly have to be changed ...


I think this is intended for developers or hackers and not people like me.
 
Old 08-26-2013, 05:54 AM   #6
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Quote:
Originally Posted by Didier Spaier View Post
Instructions are in the doc directory: I tried, it works but 'make' returned missing files, so you'll have to make some adjustments to the Makefile, I guess.
I did too, the files are NEWS and some others without importance. But the Makefile is way too complex.
 
Old 08-26-2013, 06:04 AM   #7
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Quote:
Originally Posted by knudfl View Post
That's what `bootstrap' is for : aclocal && autoconf && automake -a
( Please read the "text file" bootstrap.)

This will do : $ sh bootstrap
... and the links to /usr/share/automake*/install-sh etc. etc. are created.

EDIT : Beaten by @ Didier Spaier.

-
I donot have a file bootstrap. I ran, in a second try, the three commands, which are not mention in the <root_dir>/INSTALL, but are mentioned in <root_dir>/doc/README.txt. But then make failed, complaining ... exactly what happened to Didier.
 
Old 08-26-2013, 11:25 AM   #8
gnashley
Amigo developer
 
Registered: Dec 2003
Location: Germany
Distribution: Slackware
Posts: 4,928

Rep: Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612
'cd src && make -f makefiles/Makefile.linux' seems to be the magic invocation.
 
2 members found this post helpful.
Old 08-26-2013, 07:18 PM   #9
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Thank you gnashley.
 
Old 08-27-2013, 12:21 AM   #10
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Quote:
Originally Posted by gnashley View Post
'cd src && make -f makefiles/Makefile.linux' seems to be the magic invocation.
It worked! But this package serious flaws. The include files, which has hundreds of definitions without which writing a source program (assembler) would be very tiresome, has directives beginning with '#', like #ifndef, #define, #pragma, which seem to belong to C but not to the assembler language. I will delete those directives and use it anyways. And best, I see in the Atmel site if I can get some new assembler, though they are all for Windows.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
configure: error: cannot find libusb support install hplip-3.9.8 redhatwannabe Linux - Enterprise 9 10-26-2022 07:31 PM
configure: error: cannot find install-sh or install.sh in . ./.. ./../.. jialin Debian 9 12-01-2009 08:36 PM
configure: error: Couldn't find DBus >= 1.0.0, install libdbus-dev ? saroramay Linux - Newbie 1 09-20-2008 05:12 AM
configure: error: Can't find "javac" in your PATH, when install/compile a program... JungMin Programming 5 12-07-2005 05:04 PM
little help ;) "configure: error: can not find install-sh or install.sh" pertek Linux - Software 0 03-19-2004 11:20 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:11 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration