diff options
author | Pascal Terjan <pterjan@gmail.com> | 2013-12-24 21:47:40 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2013-12-24 21:47:40 +0000 |
commit | b7b75f31a616ffcafd6ba599cb16b716099e8b42 (patch) | |
tree | 799457fcfade68c8b9ee233bf580f23964300f9b | |
parent | c7b3c8d597befa0c0cc78564b1a88680bacfbc5a (diff) | |
download | rpm-setup-b7b75f31a616ffcafd6ba599cb16b716099e8b42.tar rpm-setup-b7b75f31a616ffcafd6ba599cb16b716099e8b42.tar.gz rpm-setup-b7b75f31a616ffcafd6ba599cb16b716099e8b42.tar.bz2 rpm-setup-b7b75f31a616ffcafd6ba599cb16b716099e8b42.tar.xz rpm-setup-b7b75f31a616ffcafd6ba599cb16b716099e8b42.zip |
Fix mistake in previous version1.195
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | build.macros.in | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,6 @@ +Version 1.195 - 24 Dec 2013, by Pascal Terjan +- Fix mistake in previous version + Version 1.194 - 24 Dec 2013, by Pascal Terjan - Only install gem .so from paths in require_paths diff --git a/build.macros.in b/build.macros.in index 04000ea..f0d222c 100644 --- a/build.macros.in +++ b/build.macros.in @@ -514,7 +514,7 @@ sed -i -e 's/`git ls-files`/`find -type f`/' \\\ --env-shebang --rdoc --ri --force --ignore-dependencies \\\ --install-dir %{buildroot}%{ruby_gemdir} \\\ --bindir %{buildroot}%{_bindir} \ - EXTPATH=$(ruby -e "puts Gem::Specification.new('%{__ruby_module_name}.gemspec').require_paths.join(' ')") \ + EXTPATH=$(ruby -e "puts Gem::Specification.load('%{__ruby_module_name}.gemspec').require_paths.join(' ')") \ %{-d: \ (cd %{buildroot}%{gem_instdir}; \\\ for f in $(find $EXTPATH -name *.h); do \\\ diff --git a/configure.ac b/configure.ac index 5a660c6..6379247 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ # $Id: configure.ac 271266 2010-11-04 10:43:28Z fwang $ AC_PREREQ(2.59) -AC_INIT(rpm-mageia-setup, 1.194, pterjan@mageia.org) +AC_INIT(rpm-mageia-setup, 1.195, pterjan@mageia.org) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(1.9 -Wno-portability no-dist-gzip dist-xz) AC_CONFIG_SRCDIR |