Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
Makefile: fix GNUMAKE script
Browse files Browse the repository at this point in the history
  • Loading branch information
jj1bdx committed May 14, 2020
1 parent ce660a5 commit fc88217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
# If stock `make` is GNU Make, use `make`; otherwise use `gmake`
GNUMAKE=@`sh -c 'gmakebin=\`which gmake\`; if [ ! -z $$gmakebin] && [-x $$gmakebin ]; then echo gmake; else echo make; fi'`
GNUMAKE=@`sh -c 'gmakebin=\`which gmake\`; if [ ! -z $$gmakebin ] && [ -x $$gmakebin ]; then echo gmake; else echo make; fi'`

TARGETMAKEFILE= ./Makefile.sfmt

Expand Down

0 comments on commit fc88217

Please sign in to comment.