diff options
author | jbj <devnull@localhost> | 2000-03-09 18:13:02 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2000-03-09 18:13:02 +0000 |
commit | e93943f1e01bb8898e8445fb3ab1a648d1be7b68 (patch) | |
tree | d57dfc135fe862393bf6e12cb449a4ebabc3d399 /python | |
parent | acdafeca5ca650d1944e45b94bc6a60ff3fb67a2 (diff) | |
download | rpm-e93943f1e01bb8898e8445fb3ab1a648d1be7b68.tar.gz rpm-e93943f1e01bb8898e8445fb3ab1a648d1be7b68.tar.bz2 rpm-e93943f1e01bb8898e8445fb3ab1a648d1be7b68.zip |
- portability: skip bzip2 if not available.
- portability: skip gzseek if not available (zlib-1.0.4).
- portability: skip personality if not available (linux).
- portability: always include arpa/inet.h (HP-UX).
- portability: don't use id -u (Brandon Allbery).
- portability: don't chown/chgrp -h w/o lchown.
- portability: splats in rpm.spec to find /usr/{share,local}/locale/*
CVS patchset: 3610
CVS date: 2000/03/09 18:13:02
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/Makefile.in b/python/Makefile.in index 783f63765..5f088d31c 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -127,11 +127,15 @@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ __CAT = @__CAT@ __CHGRP = @__CHGRP@ +__CHGRP_RHF = @__CHGRP_RHF@ __CHMOD = @__CHMOD@ __CHOWN = @__CHOWN@ +__CHOWN_RHF = @__CHOWN_RHF@ __CP = @__CP@ __CPIO = @__CPIO@ +__GREP = @__GREP@ __ID = @__ID@ +__ID_U = @__ID_U@ __INSTALL = @__INSTALL@ __LD = @__LD@ __MAKE = @__MAKE@ @@ -141,8 +145,10 @@ __NM = @__NM@ __OBJCOPY = @__OBJCOPY@ __OBJDUMP = @__OBJDUMP@ __PATCH = @__PATCH@ +__PERL = @__PERL@ __RM = @__RM@ __RSH = @__RSH@ +__SED = @__SED@ __SSH = @__SSH@ __STRIP = @__STRIP@ __TAR = @__TAR@ |