forked from Lainports/freebsd-ports
- Use upstream release archive as recommended by Porters Handbook - Don't run tests during build - Adjust Makefile to improve readability and uniformity PR: 277591 Reviewed by: Paco Pascal <me@pacopascal.com> (maintainer)
11 lines
397 B
Text
11 lines
397 B
Text
--- Makefile.orig 2024-03-09 07:10:33 UTC
|
|
+++ Makefile
|
|
@@ -49,7 +49,7 @@ bin/ol: c/ol.c
|
|
bin/ol: c/ol.c
|
|
# compile the real owl repl binary
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/olp $?
|
|
- CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" sh tests/run all bin/olp
|
|
+ # CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" sh tests/run all bin/olp
|
|
test '!' -f $@ || mv $@ bin/ol-old
|
|
mv bin/olp $@
|
|
|