From dc4f087e9409a5e2035201d78f5bfc2a378bdfe7 Mon Sep 17 00:00:00 2001 From: Marc Piulachs Date: Mon, 30 Jun 2008 19:12:16 +0000 Subject: [PATCH] - Fix a bug in cdfile that was preventing to use the 'nameoncd' attribute svn path=/trunk/; revision=34225 --- reactos/boot/bootdata/bootdata.rbuild | 8 ++++---- reactos/tools/rbuild/cdfile.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/boot/bootdata/bootdata.rbuild b/reactos/boot/bootdata/bootdata.rbuild index 5e38becc6fd..5ce9ad304a8 100644 --- a/reactos/boot/bootdata/bootdata.rbuild +++ b/reactos/boot/bootdata/bootdata.rbuild @@ -5,10 +5,10 @@ icon.ico readme.txt - hivecls_$(ARCH).inf - hivedef_$(ARCH).inf - hivesft_$(ARCH).inf - hivesys_$(ARCH).inf + hivecls_$(ARCH).inf + hivedef_$(ARCH).inf + hivesft_$(ARCH).inf + hivesys_$(ARCH).inf txtsetup.sif unattend.inf diff --git a/reactos/tools/rbuild/cdfile.cpp b/reactos/tools/rbuild/cdfile.cpp index 20a14a9b713..e577d25ab53 100644 --- a/reactos/tools/rbuild/cdfile.cpp +++ b/reactos/tools/rbuild/cdfile.cpp @@ -60,6 +60,6 @@ CDFile::CDFile ( const Project& project, &cdfileNode ); target = new FileLocation ( OutputDirectory, target_relative_directory, - nameoncd ? att->value : cdfileNode.value, + nameoncd ? nameoncd->value : cdfileNode.value, &cdfileNode ); }