mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-08 17:22:05 +03:00
* modules/sys_stat-h: Renamed from modules/sys_stat. * modules/sys_stat-h-tests: Renamed from modules/sys_stat-tests. * modules/sys_stat-h-c++-tests: Renamed from modules/sys_stat-c++-tests. * tests/test-sys_stat-h.c: Renamed from tests/test-sys_stat.c. * tests/test-sys_stat-h-c++.cc: Renamed from tests/test-sys_stat-c++.cc. * doc/posix-headers/sys_stat.texi: Update. * doc/posix-functions/mkdir.texi: Update. * modules/* (Depends-on): Update. * modules/sys_stat: New file.
33 lines
487 B
Plaintext
33 lines
487 B
Plaintext
Description:
|
|
chmod() function: change the permissions of a file
|
|
|
|
Files:
|
|
lib/chmod.c
|
|
m4/chmod.m4
|
|
|
|
Depends-on:
|
|
sys_stat-h
|
|
lstat [test $REPLACE_CHMOD = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_CHMOD
|
|
gl_CONDITIONAL([GL_COND_OBJ_CHMOD], [test $REPLACE_CHMOD = 1])
|
|
AM_COND_IF([GL_COND_OBJ_CHMOD], [
|
|
gl_PREREQ_CHMOD
|
|
])
|
|
gl_SYS_STAT_MODULE_INDICATOR([chmod])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_CHMOD
|
|
lib_SOURCES += chmod.c
|
|
endif
|
|
|
|
Include:
|
|
<sys/stat.h>
|
|
|
|
License:
|
|
GPL
|
|
|
|
Maintainer:
|
|
Paul Eggert, Bruno Haible
|