From 72d112c23c70ec87a7fb4e9eb6d338c2385f401c Mon Sep 17 00:00:00 2001 From: edoapra Date: Tue, 24 Oct 2023 16:41:45 -0700 Subject: [PATCH] fix broken 64_to_32 conversion --- src/peigs/comm/GNUmakefile | 4 ++-- src/peigs/ctof/GNUmakefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/peigs/comm/GNUmakefile b/src/peigs/comm/GNUmakefile index d820a6175f..1d451e7400 100644 --- a/src/peigs/comm/GNUmakefile +++ b/src/peigs/comm/GNUmakefile @@ -42,10 +42,10 @@ realclean: 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 .SUFFIXES: .o .s .F .f .c diff --git a/src/peigs/ctof/GNUmakefile b/src/peigs/ctof/GNUmakefile index b6f180063b..dde2cb3de3 100644 --- a/src/peigs/ctof/GNUmakefile +++ b/src/peigs/ctof/GNUmakefile @@ -36,10 +36,10 @@ clean: 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) -c $<