diff options
author | Martti Kuparinen <[email protected]> | 2010-06-22 12:12:29 +0300 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-08-13 11:09:11 +0200 |
commit | 69600625564ab3338b2bb2cbbc83da1ae28d6813 (patch) | |
tree | dcbe42898f971c3c89f95ba3152cb67a89f12c99 /lib/mnesia/test | |
parent | 2008472c314e9ae78ee0044bb265c0d10e1aed31 (diff) | |
download | otp-69600625564ab3338b2bb2cbbc83da1ae28d6813.tar.gz otp-69600625564ab3338b2bb2cbbc83da1ae28d6813.tar.bz2 otp-69600625564ab3338b2bb2cbbc83da1ae28d6813.zip |
Use proper install method
Only real program files should be installed with INSTALL_PROGRAM while
scripts should be installed with INSTALL_SCRIPT and data files with
INSTALL_DATA.
Diffstat (limited to 'lib/mnesia/test')
-rw-r--r-- | lib/mnesia/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mnesia/test/Makefile b/lib/mnesia/test/Makefile index a4f32e3f78..4f98efaed1 100644 --- a/lib/mnesia/test/Makefile +++ b/lib/mnesia/test/Makefile @@ -109,7 +109,7 @@ release_spec: opt release_tests_spec: opt $(INSTALL_DIR) $(RELSYSDIR) $(INSTALL_DATA) mnesia.spec mnesia.spec.vxworks $(ERL_FILES) $(HRL_FILES) $(RELSYSDIR) - $(INSTALL_PROGRAM) mt $(INSTALL_PROGS) $(RELSYSDIR) + $(INSTALL_SCRIPT) mt $(INSTALL_PROGS) $(RELSYSDIR) # chmod -f -R u+w $(RELSYSDIR) # @tar cf - *_SUITE_data | (cd $(RELSYSDIR); tar xf -) |