~ubuntu-branches/ubuntu/jaunty/cmake/jaunty-security

« back to all changes in this revision

Viewing changes to Source/cmLocalUnixMakefileGenerator.cxx

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2005-09-28 15:29:19 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050928152919-rm7ph3wq20tyi1er
Tags: 2.0.6-2
Apply upstream patch to fix UseSWIG.cmake (Closes: #330581)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  Program:   CMake - Cross-Platform Makefile Generator
4
4
  Module:    $RCSfile: cmLocalUnixMakefileGenerator.cxx,v $
5
5
  Language:  C++
6
 
  Date:      $Date: 2004/10/27 19:58:46 $
7
 
  Version:   $Revision: 1.160.2.12 $
 
6
  Date:      $Date: 2004/12/06 16:10:56 $
 
7
  Version:   $Revision: 1.160.2.13 $
8
8
 
9
9
  Copyright (c) 2002 Kitware, Inc., Insight Consortium.  All rights reserved.
10
10
  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2272
2272
            {
2273
2273
            std::string s = (*source)->GetSourceName();
2274
2274
            s += this->GetOutputExtension((*source)->GetSourceExtension().c_str());
 
2275
            s = this->CreateSafeUniqueObjectFileName(s.c_str());
2275
2276
            fout << this->ConvertToRelativeOutputPath(s.c_str()) << " : "
2276
2277
                 << this->ConvertToRelativeOutputPath(dep->c_str()) << "\n";
2277
2278
            ret = true;