|
1 | 1 | diff --git a/Makefile b/Makefile
|
2 |
| -index e692e9d..15e051f 100644 |
| 2 | +index 83ea4eb..894be2c 100644 |
3 | 3 | --- a/Makefile
|
4 | 4 | +++ b/Makefile
|
5 |
| -@@ -35,7 +35,7 @@ BIN=bin |
6 |
| - |
7 |
| - LIB=$(shell pwd)/urb |
| 5 | +@@ -49,7 +49,7 @@ ifneq (,$(wildcard /usr/local/opt/openssl/.)) |
| 6 | + OPENSSLLIB=-L/usr/local/opt/openssl/lib |
| 7 | + endif |
8 | 8 |
|
9 | 9 | -RM=rm -f
|
10 | 10 | +RM=rm -rf
|
11 | 11 | ifneq ($(UNAME),FreeBSD)
|
12 | 12 | CC=gcc
|
13 | 13 | CXX=g++
|
14 |
| -@@ -459,6 +459,7 @@ debinstall: |
| 14 | +@@ -485,8 +485,10 @@ osxpackage: |
| 15 | + $(MAKE) $(BIN)/urbit LIB=/usr/local/lib/urb STATIC=yes |
| 16 | + mkdir -p inst/usr/local/lib/urb inst/usr/local/bin |
| 17 | + cp $(BIN)/urbit inst/usr/local/bin |
| 18 | +- cp urb/urbit.pill inst/usr/local/lib/urb |
| 19 | +- cp -R urb/zod inst/usr/local/lib/urb |
| 20 | ++ cp urbit.pill inst/usr/local/lib/urb |
| 21 | ++ #cp -R urb/zod inst/usr/local/lib/urb |
| 22 | ++ mkdir -p inst/usr/local/lib/urb |
| 23 | ++ cp -R arvo inst/usr/local/lib/urb/arvo |
| 24 | + pkgbuild --root inst --identifier org.urbit.urbit --version 0.2 urbit.pkg |
| 25 | + |
| 26 | + debbuild: |
| 27 | +@@ -495,12 +497,14 @@ debbuild: |
| 28 | + debinstall: |
| 29 | + mkdir -p $(DESTDIR)/usr/bin $(DESTDIR)/usr/share/urb |
| 30 | + install -m755 $(BIN)/urbit $(DESTDIR)/usr/bin |
| 31 | +- cp urb/urbit.pill $(DESTDIR)/usr/share/urb |
| 32 | +- cp -R urb/zod $(DESTDIR)/usr/share/urb |
| 33 | ++ cp urbit.pill $(DESTDIR)/usr/share/urb |
| 34 | ++ #cp -R urb/zod $(DESTDIR)/usr/share/urb |
| 35 | ++ mkdir -p $(DESTDIR)/usr/share/urb |
| 36 | ++ cp -R arvo $(DESTDIR)/usr/share/urb/arvo |
15 | 37 |
|
16 | 38 | clean:
|
17 |
| - $(RM) $(VERE_OFILES) $(BIN)/urbit urbit.pkg $(VERE_DFILES) |
18 |
| -+ $(RM) debian/files debian/urbit* |
| 39 | + $(RM) $(VERE_OFILES) $(BIN)/urbit urbit.pkg $(VERE_DFILES) $(TAGS) |
| 40 | +- $(RM) -r debian/files debian/urbit* |
| 41 | ++ $(RM) -r debian/files debian/urbit* debian/.debhelper debian/debhelper-build-stamp |
19 | 42 |
|
20 | 43 | # 'make distclean all -jn' ∀ n>1 still does not work because it is possible
|
21 | 44 | # Make will attempt to build urbit while it is also cleaning urbit..
|
22 |
| -@@ -468,5 +469,6 @@ distclean: clean $(LIBUV_MAKEFILE) |
23 |
| - $(MAKE) -C outside/ed25519 clean |
24 |
| - $(MAKE) -C outside/anachronism clean |
25 |
| - $(MAKE) -C outside/scrypt clean |
26 |
| -+ $(RM) debian/files debian/urbit* |
27 |
| - |
28 |
| - .PHONY: clean debbuild debinstalldistclean etags osxpackage tags |
29 | 45 | diff --git a/include/noun/allocate.h b/include/noun/allocate.h
|
30 |
| -index 26423f9..d6e1aff 100644 |
| 46 | +index 7ab6b21..4a1310e 100644 |
31 | 47 | --- a/include/noun/allocate.h
|
32 | 48 | +++ b/include/noun/allocate.h
|
33 |
| -@@ -19,7 +19,7 @@ |
| 49 | +@@ -23,7 +23,7 @@ |
34 | 50 | **/
|
35 | 51 | /* u3a_bits: number of bits in word-addressed pointer. 29 == 2GB.
|
36 | 52 | */
|
|
0 commit comments