From 4e3785ca9a3d28ef6c7e9223ce13ccc2823c044c Mon Sep 17 00:00:00 2001 From: edoapra Date: Tue, 24 Oct 2023 15:26:03 -0700 Subject: [PATCH] fix broken 64_to_32 conversion --- src/peigs/src/c/GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/peigs/src/c/GNUmakefile b/src/peigs/src/c/GNUmakefile index fd3d37fb91..c79fcd185a 100644 --- a/src/peigs/src/c/GNUmakefile +++ b/src/peigs/src/c/GNUmakefile @@ -273,10 +273,10 @@ peigs_tldlfact.o: peigs_tldlfact.c CNFDIR := $(NWCHEM_TOP)/src/config .PHONY: 64_to_32 32_to_64 64_to_32: - $(CNFDIR)/64_to_32 "*c *f *F" + $(CNFDIR)/64_to_32 *c *f *F 32_to_64: - $(CNFDIR)/32_to_64 "*c *f *F" + $(CNFDIR)/32_to_64 *c *f *F .c.o:; $(peigs_CC) $(OPTC) -c $< .f.o:; $(peigs_FC) $(OPT) -c $<