From 7ee53587bd321f3c1c8623ad73031a9dbe267d9a Mon Sep 17 00:00:00 2001 From: maxsteciuk Date: Tue, 9 Oct 2018 23:37:52 -0400 Subject: [PATCH] [trident-build] Issue #6: Fixed the issue of CLI manifest option not being propagated to underlying Makefile --- build-distro.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-distro.sh b/build-distro.sh index b7e5aac..a161ce9 100755 --- a/build-distro.sh +++ b/build-distro.sh @@ -36,7 +36,7 @@ if [ ! -f "${TRUEOS_MANIFEST}" ] ; then echo "[ERROR] Specified manifest cannot be found: ${TRUEOS_MANIFEST}" return 1 fi -TRUEOS_MANIFEST=`realpath -q "${TRUEOS_MANIFEST}"` +export TRUEOS_MANIFEST=`realpath -q "${TRUEOS_MANIFEST}"` #Perform any directory replacements in the manifest as needed grep -q "%%PWD%%" "${TRUEOS_MANIFEST}"