1
0
mirror of https://git.code.sf.net/p/fuse-emulator/fuse-utils synced 2025-08-09 00:42:13 +03:00

Fix typo in the CPPFLAGS variable name (patch #310).

Legacy-ID: 4976
This commit is contained in:
Alberto Garcia
2013-05-20 13:52:11 +00:00
committed by Fredrick Meunier
parent 2385c6e8c7
commit 40b174fbff
2 changed files with 3 additions and 1 deletions

View File

@@ -70,7 +70,7 @@ CPPFLAGS="$CPPFLAGS -I$withval/include";
CXXFLAGS="$CXXFLAGS -I$withval/include"; CXXFLAGS="$CXXFLAGS -I$withval/include";
LDFLAGS="$LDFLAGS -L$withval/lib", LDFLAGS="$LDFLAGS -L$withval/lib",
if test "$prefix" != "NONE"; then if test "$prefix" != "NONE"; then
CPPFLAGS="$CPPLAGS -I$prefix/include"; CPPFLAGS="$CPPFLAGS -I$prefix/include";
CXXFLAGS="$CXXFLAGS -I$prefix/include"; CXXFLAGS="$CXXFLAGS -I$prefix/include";
LDFLAGS="$LDFLAGS -L$prefix/lib" LDFLAGS="$LDFLAGS -L$prefix/lib"
fi) fi)

View File

@@ -416,3 +416,5 @@
20130516 ChangeLog: update date in main changelog. 20130516 ChangeLog: update date in main changelog.
20130517 README: update date for 1.1 release. 20130517 README: update date for 1.1 release.
20130518 man/fmfconv.1: update date for 1.1 release (Sergio). 20130518 man/fmfconv.1: update date for 1.1 release (Sergio).
20130520 configure.ac: fix typo in the CPPFLAGS variable name (patch #310)
(Alberto).