rake-compiler 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83d5f854b75073d4180da9ece3502bb86995335a52e8b59a83212ec70b08206d
4
- data.tar.gz: cd2840623dd94c1377ad5c9304e19fc37907af1e4f5fb3cb8ce3011e80e9729e
3
+ metadata.gz: a440a2d8c83bb1c19ded360f560ed350a7872385ac1ecb3c00eed20243824a37
4
+ data.tar.gz: fb1a76fa0de52441b3307fb6a228b363581b1a10f1ead12340be380c88a21030
5
5
  SHA512:
6
- metadata.gz: 02e09a4a2ee0fb199d54f6f063225be7a731abb7752b2cdd3eb05f409b0bac16c0dc32c5222b4167b3a4b39507093ce5fd6a1e3eb5012c5d77233423ecabbb3b
7
- data.tar.gz: ff48af6c3b541170420f5c3351ab328052219fb906052d7813923975c231245c8613f212ce7e6e88ff63ccb8d0f5191a5a03935c382b53885db4e7d858800f8f
6
+ metadata.gz: 3af072dc0c061056c366876d13a57fbaa9d219cf80b20733c6aecabd23cfeb99d174a8028fb06db0fb7190c51e7beb37c4731227553293b720ed0c2524856ce3
7
+ data.tar.gz: 827b37a381927c52dbf53e132aef924801339c6b441283f09a5708d0d80e234073cb7c0dc1957239ab65fc4ab59bafdccb95f7b3d08a212056f3cd2e19baea40
data/History.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 1.1.3/ 2021-12-08
2
+
3
+ * Fixes:
4
+ * Fix a bug that wrong install location is used.
5
+ [#194](https://github.com/rake-compiler/rake-compiler/issues/194) [Reported by Andrew Kane]
6
+
1
7
  ### 1.1.2 / 2021-12-07
2
8
 
3
9
  * Changes:
@@ -153,7 +153,7 @@ module Rake
153
153
  task "copy:#{@name}:#{platf}:#{ruby_ver}" => [lib_binary_dir_path, tmp_binary_path, "#{tmp_path}/Makefile"] do
154
154
  # install in lib for native platform only
155
155
  unless for_platform
156
- sh "#{make} install", chdir: tmp_path
156
+ sh "#{make} install target_prefix=", chdir: tmp_path
157
157
  end
158
158
  end
159
159
  # copy binary from temporary location to staging directory
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou