about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/cmake
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-06-27 16:33:24 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-06-27 16:33:24 +0200
commit3314be6b73f773df1a14f6c81b8076f0bfaf0852 (patch)
treec071868fec922fc49fa8c076aab053e48930edaf /pkgs/development/tools/build-managers/cmake
parent4251b70c7ef8e9ea079f430c80b64f863feb4b88 (diff)
downloadnixlib-3314be6b73f773df1a14f6c81b8076f0bfaf0852.tar
nixlib-3314be6b73f773df1a14f6c81b8076f0bfaf0852.tar.gz
nixlib-3314be6b73f773df1a14f6c81b8076f0bfaf0852.tar.bz2
nixlib-3314be6b73f773df1a14f6c81b8076f0bfaf0852.tar.lz
nixlib-3314be6b73f773df1a14f6c81b8076f0bfaf0852.tar.xz
nixlib-3314be6b73f773df1a14f6c81b8076f0bfaf0852.tar.zst
nixlib-3314be6b73f773df1a14f6c81b8076f0bfaf0852.zip
cmake: consistent names, to satisfy comments on #567
Diffstat (limited to 'pkgs/development/tools/build-managers/cmake')
-rwxr-xr-xpkgs/development/tools/build-managers/cmake/setup-hook.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/build-managers/cmake/setup-hook.sh b/pkgs/development/tools/build-managers/cmake/setup-hook.sh
index d324d1f18154..abc0b070a764 100755
--- a/pkgs/development/tools/build-managers/cmake/setup-hook.sh
+++ b/pkgs/development/tools/build-managers/cmake/setup-hook.sh
@@ -57,7 +57,7 @@ else
     envHooks+=(addCMakeParams)
 fi
 
-make_cmake_find_libs(){
+makeCmakeFindLibs(){
   for flag in $NIX_CFLAGS_COMPILE $NIX_LDFLAGS; do
     case $flag in
       -I*)
@@ -72,4 +72,4 @@ make_cmake_find_libs(){
 
 # not using setupHook, because it could be a setupHook adding additional
 # include flags to NIX_CFLAGS_COMPILE
-postHooks+=(make_cmake_find_libs)
+postHooks+=(makeCmakeFindLibs)