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/geovis/Makefile.in

    r4349 r4364  
    2929MKDIR_P         = @MKDIR_P@
    3030
    31 SVN_VERSION     = $(shell svnversion $(srcdir))
     31SVN_VERSION     = $(shell svnversion $(srcdir) | sed 's/Unversioned directory/unknown/')
    3232STATSDIR        = @STATSDIR@
    3333
     
    109109                Trace.cpp \
    110110                ScaleBar.cpp \
     111                SingleWindow.cpp \
    111112                Stats.cpp
    112113
Note: See TracChangeset for help on using the changeset viewer.