Skip to content

Commit

Permalink
lib{dll,sum}/Mamfile: Fix build fail (re: 7d46240)
Browse files Browse the repository at this point in the history
The build was failing due to an erroneous backslash line
continuation within single shell quotess. Sorry about that,
everyone; a case of too much cafeine and not enough sleep.
  • Loading branch information
McDutchie committed Mar 23, 2024
1 parent 7d46240 commit 87f7b47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/lib/libdll/Mamfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ make install virtual
make dlldefs.h implicit
make FEATURE/dll
prev features/dll
exec - iffe ${IFFEFLAGS} -v -c '${CC} ${mam_cc_FLAGS} ${CCFLAGS} \
exec - ${mam_cc_NOSTRICTALIASING} ${LDFLAGS}' \
exec - iffe ${IFFEFLAGS} -v -c \
exec - '${CC} ${mam_cc_FLAGS} ${CCFLAGS} ${mam_cc_NOSTRICTALIASING} ${LDFLAGS}' \
exec - ref ${mam_cc_L+-L.} ${mam_cc_L+-L${INSTALLROOT}/lib} \
exec - -I${PACKAGE_ast_INCLUDE} -I${INSTALLROOT}/include \
exec - ${mam_libdl} ${mam_libast} : run ${<}
Expand Down
4 changes: 2 additions & 2 deletions src/lib/libsum/Mamfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ make install virtual
prev sum-ast4.c implicit
make FEATURE/sum implicit
prev features/sum
exec - iffe ${IFFEFLAGS} -v -c '${CC} ${mam_cc_FLAGS} ${CCFLAGS} \
exec - ${mam_cc_NOSTRICTALIASING} ${LDFLAGS}' \
exec - iffe ${IFFEFLAGS} -v -c \
exec - '${CC} ${mam_cc_FLAGS} ${CCFLAGS} ${mam_cc_NOSTRICTALIASING} ${LDFLAGS}' \
exec - ref ${mam_cc_L+-L${INSTALLROOT}/lib} -I${PACKAGE_ast_INCLUDE} \
exec - -I${INSTALLROOT}/include ${mam_libast} : run ${<}
done
Expand Down

0 comments on commit 87f7b47

Please sign in to comment.