diff options
author | Kali Kaneko <kali@leap.se> | 2016-04-06 16:07:29 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-04-06 17:30:25 -0400 |
commit | 8836413ae5d0d22bca3c512ff4164d7559f9ada9 (patch) | |
tree | 6061894832b923d86b31c8fe744c92607475fb5f | |
parent | 40604c0b2abe4d51e5e7b41a0e71c78a958b0b87 (diff) |
typo: mimmick older bundles path
-rw-r--r-- | pkg/launcher/bitmask-launcher.c | 2 | ||||
-rw-r--r-- | pkg/pyinst/pyinst-build.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pkg/launcher/bitmask-launcher.c b/pkg/launcher/bitmask-launcher.c index aac5da3f..cf5c2a18 100644 --- a/pkg/launcher/bitmask-launcher.c +++ b/pkg/launcher/bitmask-launcher.c @@ -12,7 +12,7 @@ #include <unistd.h> #include <stdlib.h> -char* const bitmask_path = "libs"; +char* const bitmask_path = "lib"; char* const entrypoint = "bitmask"; int main(int argc, char *argv[]) diff --git a/pkg/pyinst/pyinst-build.mk b/pkg/pyinst/pyinst-build.mk index a14f2a8d..16737ead 100644 --- a/pkg/pyinst/pyinst-build.mk +++ b/pkg/pyinst/pyinst-build.mk @@ -40,7 +40,7 @@ pyinst-wrapper: pyinst-cleanup: rm -rf $(DIST)config mkdir -p $(DIST_VERSION) - mv $(DIST) $(DIST_VERSION)libs + mv $(DIST) $(DIST_VERSION)lib cd pkg/launcher && make mv pkg/launcher/bitmask $(DIST_VERSION) |