diff options
| author | Jakub Jirutka <jakub@jirutka.cz> | 2017-07-25 21:44:50 +0200 |
|---|---|---|
| committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-07-25 21:44:50 +0200 |
| commit | a66abec72346d0bd50d0dad6c02c2fc8023e277a (patch) | |
| tree | da36dddf35be68bbac04ce9a3b161a59e96b4aa4 /Makefile | |
| parent | b8151f36204607d1697701ad6174af2073ffa77c (diff) | |
| download | lua-aports-a66abec72346d0bd50d0dad6c02c2fc8023e277a.tar.bz2 lua-aports-a66abec72346d0bd50d0dad6c02c2fc8023e277a.tar.xz | |
move binfiles to bin/ directory
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,11 +19,11 @@ all: @echo "To install run:" @echo " make install DESTDIR=<targetroot>" -install: $(binfiles) $(addprefix aports/,$(aportsfiles)) +install: $(addprefix bin/,$(binfiles)) $(addprefix aports/,$(aportsfiles)) install -d $(DESTDIR)$(luasharedir)/aports \ $(DESTDIR)$(bindir) install -m644 $(addprefix aports/,$(aportsfiles)) \ $(DESTDIR)$(luasharedir)/aports/ for file in $(binfiles); do \ - install -m755 $$file $(DESTDIR)$(bindir)/$${file%.lua} || exit 1; \ + install -m755 bin/$$file $(DESTDIR)$(bindir)/$${file%.lua} || exit 1; \ done |
