Skip to content

Commit

Permalink
Fixed problem in CMakeLists causing config.h to be generated with CON…
Browse files Browse the repository at this point in the history
…FIGDATADIR=usr/share... instead of /usr/share...
  • Loading branch information
rocketman768 committed Oct 31, 2011
1 parent 5dfb089 commit 969dbd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ SET( FILES_TO_TRANSLATE
# "#define CONFIGDATADIR ${CONFIGDATADIR}$" in config.in will be replaced
# by the below corresponding value in ${CONFIGDATADIR} below when
# CONFIGURE_FILE() is called.
SET( CONFIGDATADIR "${DATAPATH}/" )
SET( CONFIGDOCDIR "${DOCPATH}/" )
SET( CONFIGDATADIR "/${DATAPATH}/" )
SET( CONFIGDOCDIR "/${DOCPATH}/" )

# Tell cmake where the configure file is and where
# to put the output. All variables in config.in written as "${VAR}$
Expand Down

0 comments on commit 969dbd5

Please sign in to comment.