From 019bc0ba0be2dbf2406661c2fec6e0774b6bfcd6 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 19 Oct 2016 07:39:03 -0400 Subject: [PATCH] fix typos in Makefile.lammps for NetCDF support --- lib/netcdf/Makefile.lammps | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/netcdf/Makefile.lammps b/lib/netcdf/Makefile.lammps index 73dfa54c3c..2da9319abd 100644 --- a/lib/netcdf/Makefile.lammps +++ b/lib/netcdf/Makefile.lammps @@ -12,8 +12,8 @@ netcdf_SYSLIB += $(shell nc-config --libs) endif ifneq ($(shell which ncmpidump 2>> /dev/null),) -PNETCDF_PATH = ($shell which ncmpidump | sed -e 's,bin/ncmpidump,,') -netcdf_SYSINC = -DLMP_HAS_PNETCDF -I$(PNETCDF_PATH)/include -netcdf_SYSLIB = -lpnetcdf -netcdf_SYSPATH = -L$(PNETCDF_PATH)/lib +PNETCDF_PATH = $(shell which ncmpidump | sed -e 's,bin/ncmpidump,,') +netcdf_SYSINC += -DLMP_HAS_PNETCDF -I$(PNETCDF_PATH)/include +netcdf_SYSLIB += -lpnetcdf +netcdf_SYSPATH += -L$(PNETCDF_PATH)/lib endif