Re: Installing on AIX fails

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Jun 3, 2010 at 20:01, Dario Rodriguez <soft.d4rio@xxxxxxxxx> wrote:
> On Thu, Jun 3, 2010 at 12:41 PM, Ævar Arnfjörð Bjarmason
> <avarab@xxxxxxxxx> wrote:
>> On Thu, Jun 3, 2010 at 15:32, Dario Rodriguez <soft.d4rio@xxxxxxxxx> wrote:
>>> and it all works, with angels singing and everything... a testing repo
>>> works fine for a test drive without installing, excepting 'git log'
>>> that just don't display anything.
>>
>> How about PAGER=/bin/cat git log? If that works what's your pager, and
>> do other git commands that use the pager (like git show) work or fail?
>>
>
> PAGER is not set by default as I see, but... isn't there any default
> pager for git in case of PAGER being unset?
>
> Using /bin/cat or /bin/more it works (either 'log' or 'show')

What do you mean by "disappears" anyway, was it like $(echo|less), or
did it just return with no output? What was the exit code?

In any case, running git's make test might reveal other problems on
AIX worth fixing. Maybe do that and post the results?

>>> $ /usr/linux/bin/make prefix=$HOME/apps/ NO_OPENSSL=1 NO_TCLTK=1
>>> NO_EXPAT=1 PYTHON_PATH=/usr/local/bin/python install
>>>
>>> [...]
>>> install -d -m 755 '/myhomedir/apps/bin'
>>> getopt: illegal option -- d
>>> Usage: install [-c dira] [-f dirb] [-i] [-m] [-M mode] [-O owner]
>>>               [-G group] [-S] [-n dirc] [-o] [-s] file [dirx ...]
>>> make: *** [install] Error 2
>>>
>>> Now the installing process fails because of the AIX 'install' tool and
>>> I wonder, can I patch/configure the installing process for AIX? May be
>>> a set of utils for building in such systems would help some people.
>>
>> Does AIX's install have something equivalent to GNU install's -d? The
>> -c and -f options look likely from that synopsis.
>>
>
> I don't know since I just use this system for development and testing
> (I'm debian user), but let me post the manpage info, for -c and -f:
>
> -c DirectoryA Installs a new command file in the DirectoryA variable only if
> that file does not already exist there. If it finds a copy of File there, it
> issues a message and exits without overwriting the file. This flag can be used
> alone or with the -s, -M, -O, -G, or -S flag.
>
> -f DirectoryB Forces installation of File in DirectoryB whether or not File
> already exists. If the file being installed does not already exist, the command
> sets the permission code and owner of the new file to 755 and bin, respectively.
> This flag can be used alone or with the -o,-s, -M, -O, -G, or -S flag.

Looks like there's no equivalent to -d. FWIW perl uses a installperl
script that also works on AIX. Maybe a similar fallback or default
would make sense for Git.

>>> PD2: I don't know if AIX python path is always /usr/local/bin/python,
>>> but I've seen that git Makefiles set /usr/local/bin/python for FreeBSD
>>> only:
>>>
>>> git_remote_helpers/Makefile:
>>> ifndef PYTHON_PATH
>>>        ifeq ($(uname_S),FreeBSD)
>>>                PYTHON_PATH = /usr/local/bin/python
>>>        else
>>>                PYTHON_PATH = /usr/bin/python
>>>        endif
>>> endif
>>
>> That's presumably because Python is most likely installed via the
>> ports system on FreeBSD which drops it in /usr/local. How did you
>> install Python on AIX? Is it from some IBM package or another method
>> that's the most common & standard way to do it on AIX?.
>>
>
> Again, I don't know since I'm not the sysadmin. I just looked for
> python and found it's in /usr/local/bin

Does using /usr/bin/env python instead work?

    $ cat /tmp/py.py
    #!/usr/bin/env python
    print "hello"
    $ /tmp/py.py
    hello
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]