summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2010-05-18 20:48:49 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2010-05-18 20:48:49 +0000
commit6d85cd6e0a06b12652060ec6633735249baeaf03 (patch)
treeb8264d652237a95cfa52cc84eb2b8c10b1242760
parentb436fcebf2ce3326a1d87e99d376b750111c63ee (diff)
downloadMPC-6d85cd6e0a06b12652060ec6633735249baeaf03.tar.gz
ChangeLogTag: Tue May 18 20:48:12 UTC 2010 Adam Mitz <mitza@ociweb.com>
-rw-r--r--ChangeLog6
-rwxr-xr-xprj_install.pl1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c6d9b88..16475d0c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue May 18 20:48:12 UTC 2010 Adam Mitz <mitza@ociweb.com>
+
+ * prj_install.pl:
+
+ Check for the case of an empty output dir, in this case we want '.'.
+
Tue May 18 18:44:33 UTC 2010 Chad Elliott <elliott_c@ociweb.com>
* docs/templates/vc8csharp.txt:
diff --git a/prj_install.pl b/prj_install.pl
index 2ecf4549..44e08fca 100755
--- a/prj_install.pl
+++ b/prj_install.pl
@@ -166,6 +166,7 @@ sub determineSpecialName {
}
my $odir = ($insdir =~ /^\// ? $insdir : ($dir . $insdir)) . $binarydir;
+ $odir = '.' if $odir eq '';
if ($tag eq 'exe_output') {
my @exes;
my $fh = new FileHandle();