From 48cf6f7c9e445cdde756aa290a6defedecf3c95c Mon Sep 17 00:00:00 2001 From: Elizabeth Liner Date: Mon, 9 Oct 2017 15:36:33 -0500 Subject: [PATCH] Specifying which machine we're building for memd changes Due to the manner in which fspCI compiles, we were having an issue where a placeholder file was being overwritten by its counterpart for another machine. This commit moves the placeholder file from the common directory to the specific machine directory. Change-Id: I4ba995f71b41848510e165cb64a802d8041c080d Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48141 Reviewed-by: Christian R. Geddes Reviewed-by: Martin Gloff Tested-by: Jenkins Server Tested-by: Jenkins OP Build CI Tested-by: FSP CI Jenkins Reviewed-by: Daniel M. Crowell --- src/build/buildpnor/memd_creation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/buildpnor/memd_creation.pl b/src/build/buildpnor/memd_creation.pl index cf549a5bf1d..442a648e98f 100755 --- a/src/build/buildpnor/memd_creation.pl +++ b/src/build/buildpnor/memd_creation.pl @@ -115,7 +115,7 @@ } # Removing the first byte of the MEMD binary - my $new_file = "edited_memd.dat"; + my $new_file = "$memd_dir/edited_memd.dat"; run_command("tail -c +2 $file > $new_file"); run_command("mv $new_file $file");