Skip to content
Snippets Groups Projects
Commit 35143a9d authored by FSL Automated Build Engineer's avatar FSL Automated Build Engineer
Browse files

Fix for whitespace buildstring

parent c532c07d
No related branches found
No related tags found
No related merge requests found
......@@ -5,13 +5,12 @@ PROJNAME = utils
USRINCFLAGS = -I${INC_NEWMAT}
USRLIBFLAGS = -L${LIB_NEWMAT}
BUILDSTRING=\"Unknown\"
BUILDSTRING="Unknown"
ifeq (,$(wildcard $${FSLDIR}/etc/fslversion))
BUILDSTRING = \"$(shell cat ${FSLDIR}/etc/fslversion)\"
BUILDSTRING = "$(shell cat ${FSLDIR}/etc/fslversion)"
endif
USRCXXFLAGS = -DBUILDSTRING=${BUILDSTRING}
USRCXXFLAGS = -DBUILDSTRING='${BUILDSTRING}'
OptionsTestTarget = opttst
OptionsTestObjects = opttst.o
OptionsTestLibrarys = -lutils
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment