diff options
| author | Cory Fields <[email protected]> | 2014-12-11 17:37:54 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-12-11 19:23:12 -0500 |
| commit | d7db4b6317fd9c79bd6fd7c7455d7186b306411f (patch) | |
| tree | 2369b152048fda2231ae1e6bf9d039f8382d151b /depends/packages/native_comparisontool.mk | |
| parent | depends: Move source stamps to source dir and misc cleanups (diff) | |
| download | discoin-d7db4b6317fd9c79bd6fd7c7455d7186b306411f.tar.xz discoin-d7db4b6317fd9c79bd6fd7c7455d7186b306411f.zip | |
depends: fix packages with hard-coded SOURCES_PATH
Also fixes a nasty bug that removes the downloaded comparisontool jar file.
Diffstat (limited to 'depends/packages/native_comparisontool.mk')
| -rw-r--r-- | depends/packages/native_comparisontool.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/packages/native_comparisontool.mk b/depends/packages/native_comparisontool.mk index 3d430d430..d1b86dc2d 100644 --- a/depends/packages/native_comparisontool.mk +++ b/depends/packages/native_comparisontool.mk @@ -17,5 +17,5 @@ endef define $(package)_stage_cmds mkdir -p $($(package)_staging_prefix_dir)/share/$($(package)_install_dirname) && \ - mv $(SOURCES_PATH)/$($(package)_file_name) $($(package)_staging_prefix_dir)/share/$($(package)_install_dirname)/$($(package)_install_filename) + cp $($(package)_source) $($(package)_staging_prefix_dir)/share/$($(package)_install_dirname)/$($(package)_install_filename) endef |