Ignore:
Timestamp:
May 22, 2014 2:48:27 PM (10 years ago)
Author:
ldelgass
Message:

Fix for exported source package build: svnversion will return "Unversioned
directory" when run on an exported source tree, but the space causes a compiler
error. Replace this string with 'unknown'. A better fix would be to capture
the svn revision at the time the tree is exported. See nanohub ticket
#265649 for a report of the problem on Mac OS X (that was with clang, but I
verified it occurs with gcc on Linux as well).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanoscale/Makefile.in

    r4111 r4364  
    3131LD_RUN_PATH     = $(libdir)
    3232LOGDIR          = @LOGDIR@
    33 SVN_VERSION     = $(shell svnversion $(srcdir))
     33SVN_VERSION     = $(shell svnversion $(srcdir) | sed 's/Unversioned directory/unknown/')
    3434
    3535DEFINES         = -DSERVERSFILE=\"$(libdir)/renderservers.tcl\" \
Note: See TracChangeset for help on using the changeset viewer.