freebsd-ports/lang/owl-lisp/files/patch-Makefile
Daniel Engberg 656ecd1c75 lang/owl-lisp: Use upstream release archive and some Makefile improvements
- 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)
2024-03-19 21:17:25 +01:00

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 $@