remove 2 character language name assumption.
add /usr/lib/rpm/find-lang.sh (W. L. Estes <wlestes@uncg.edu>) CVS patchset: 2389 CVS date: 1998/10/05 17:20:09
This commit is contained in:
parent
f4b29669e7
commit
a0f290873e
2
CHANGES
2
CHANGES
|
@ -17,6 +17,8 @@
|
|||
- add new fully recursive macro.c
|
||||
|
||||
2.5.4 -> 2.5.5:
|
||||
- remove 2 character language name assumption.
|
||||
- add /usr/lib/rpm/find-lang.sh (W. L. Estes <wlestes@uncg.edu>)
|
||||
- Makefile: don't use ln -sf.
|
||||
- getOutputFrom(): fix race between last read on pipe and child death
|
||||
(exacerbated in 2.5.4).
|
||||
|
|
11
rpm.spec
11
rpm.spec
|
@ -9,16 +9,16 @@ Copyright: GPL
|
|||
BuildRoot: /var/tmp/rpm-%{version}-root
|
||||
Conflicts: patch < 2.5
|
||||
|
||||
%package devel
|
||||
Summary: Header files and libraries for programs that manipulate rpm packages
|
||||
Group: Development/Libraries
|
||||
|
||||
%description
|
||||
RPM is a powerful package manager, which can be used to build, install,
|
||||
query, verify, update, and uninstall individual software packages. A
|
||||
package consists of an archive of files, and package information, including
|
||||
name, version, and description.
|
||||
|
||||
%package devel
|
||||
Summary: Header files and libraries for programs that manipulate rpm packages
|
||||
Group: Development/Libraries
|
||||
|
||||
%description devel
|
||||
The RPM packaging system includes a C library that makes it easy to
|
||||
manipulate RPM packages and databases. It is intended to ease the
|
||||
|
@ -52,6 +52,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||
/bin/rpm --initdb
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc RPM-PGP-KEY CHANGES groups
|
||||
%doc docs/*
|
||||
/bin/rpm
|
||||
|
@ -72,6 +73,6 @@ rm -rf $RPM_BUILD_ROOT
|
|||
/usr/share/locale/*/LC_MESSAGES/rpm.mo
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
/usr/include/rpm
|
||||
/usr/lib/librpm.a
|
||||
/usr/lib/librpmbuild.a
|
||||
|
|
|
@ -6,7 +6,7 @@ INSTALL= @INSTALL@
|
|||
INSTALL_PROGRAM= @INSTALL_PROGRAM@
|
||||
INSTALL_DATA= @INSTALL_DATA@
|
||||
|
||||
SCRIPTS= freshen.sh
|
||||
SCRIPTS= freshen.sh find-lang.sh
|
||||
|
||||
include ../Makefile.inc
|
||||
|
||||
|
|
Loading…
Reference in New Issue