From 9e29a20df7cca05472825f57ed553780ac901520 Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Mon, 25 Jul 2011 00:50:54 -0400 Subject: [PATCH] libuafs: don't use a GNU-only feature in a common makefile $(shell ...) is a GNU Make proprietary feature and shouldn't be used OS-independent makefiles. There is no need to use it here; command substitution in the shell is good enough. Change-Id: I511108dab0770e772005b3f4a851713d1ee5a83e Reviewed-on: http://gerrit.openafs.org/5093 Reviewed-by: Derrick Brashear Reviewed-by: Andrew Deason Tested-by: BuildBot --- src/libuafs/Makefile.common.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libuafs/Makefile.common.in b/src/libuafs/Makefile.common.in index 165aa0287..5779c54db 100644 --- a/src/libuafs/Makefile.common.in +++ b/src/libuafs/Makefile.common.in @@ -20,8 +20,8 @@ RX =../rx AFSINT=../afsint LIB =../lib NS_INCL =SRC/../afsweb/netscape_includes -SWIG_PERL_CFLAGS = -fPIC $(shell perl -MExtUtils::Embed -e ccopts) -SWIG_PERL_LDFLAGS = -fPIC $(shell perl -MExtUtils::Embed -e ldopts) +SWIG_PERL_CFLAGS = -fPIC `perl -MExtUtils::Embed -e ccopts` +SWIG_PERL_LDFLAGS = -fPIC `perl -MExtUtils::Embed -e ldopts` SWIG = @SWIG@ LIBUAFS_BUILD_PERL = @LIBUAFS_BUILD_PERL@ -- 2.39.5