diff options
-rw-r--r-- | bootstrap-mingw.bat | 2 | ||||
-rw-r--r-- | bootstrap-msvc.bat | 2 | ||||
-rwxr-xr-x | bootstrap.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap-mingw.bat b/bootstrap-mingw.bat index d830073..37d9be9 100644 --- a/bootstrap-mingw.bat +++ b/bootstrap-mingw.bat @@ -73,7 +73,7 @@ set "src=%src% build2\test\script\*.cxx" set "src=%src% build2\version\*.cxx" set "src=%src% build2\install\*.cxx" set "src=%src% build2\pkgconfig\*.cxx" -set "src=%src% %libbutl%\butl\*.cxx" +set "src=%src% %libbutl%\libbutl\*.cxx" rem Get the compile options. rem diff --git a/bootstrap-msvc.bat b/bootstrap-msvc.bat index 84554c9..b0ec1f9 100644 --- a/bootstrap-msvc.bat +++ b/bootstrap-msvc.bat @@ -104,7 +104,7 @@ set "src=%src% build2\test\script" set "src=%src% build2\version" set "src=%src% build2\install" set "src=%src% build2\pkgconfig" -set "src=%src% %libbutl%\butl" +set "src=%src% %libbutl%\libbutl" rem Get the compile options. rem diff --git a/bootstrap.sh b/bootstrap.sh index 797b772..e21e598 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -129,7 +129,7 @@ src="$src build2/test/script/*.cxx" src="$src build2/version/*.cxx" src="$src build2/install/*.cxx" src="$src build2/pkgconfig/*.cxx" -src="$src $libbutl/butl/*.cxx" +src="$src $libbutl/libbutl/*.cxx" # Note that for as long as we support GCC 4.9 we have to compile in the C++14 # mode since 4.9 doesn't recognize c++1z. |