bcpierce00 / unison

Unison file synchronizer
GNU General Public License v3.0
4.11k stars 232 forks source link

makefiles: Avoid bashism in make clean #891

Closed gdt closed 1 year ago

gdt commented 1 year ago

src/Makefile.OCaml used "*.{o,obj}" which is a bash extension. make by default uses the system /bin/sh, and that in general does not support bash extensions.

Fixes #808 as tested on NetBSD.