We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c04494 commit da5cf95Copy full SHA for da5cf95
src/SConscript
@@ -82,7 +82,7 @@ SConscript('diffpy/SConscript.version')
82
83
# Path where datafiles should be installed
84
env['runtimepath'] = os.path.join(
85
- env['datadir'], 'diffpy/libdiffpy%i%i' % env['majorminor'])
+ env['datadir'], 'diffpy/libdiffpy-%i.%i' % env['majorminor'])
86
SConscript('runtime/SConscript')
87
88
# Load all other sconscripts that update lib_includes and lib_sources
src/diffpy/runtimepath.cpp
@@ -41,8 +41,9 @@ const char* runtimerelpath =
41
#ifdef DIFFPYRUNTIMERELPATH
42
STRINGIFY(DIFFPYRUNTIMERELPATH)
43
#else
44
- "../share/diffpy/libdiffpy"
+ "../share/diffpy/libdiffpy-"
45
STRINGIFY(DIFFPY_VERSION_MAJOR)
46
+ "."
47
STRINGIFY(DIFFPY_VERSION_MINOR)
48
#endif
49
;
0 commit comments