Fix global typo in last change: use chmod u-w, not chmod u-x.
[gnulib.git] / modules / argz
1 Description:
2 Argv style string arrays in a single null delimited char*.
3
4 Files:
5 lib/argz_.h
6 lib/argz.c
7 m4/argz.m4
8
9 Depends-on:
10
11 configure.ac:
12 gl_FUNC_ARGZ
13
14 Makefile.am:
15 BUILT_SOURCES += $(ARGZ_H)
16 EXTRA_DIST += argz_.h
17
18 # We need the following in order to create <argz.h> when the system
19 # doesn't have one that works with the given compiler.
20 argz.h: argz_.h
21         rm -f $@-t $@
22         cp $(srcdir)/argz_.h $@-t
23         chmod a-w $@-t
24         mv $@-t $@
25 MOSTLYCLEANFILES += argz.h argz.h-t
26
27 Include:
28 <argz.h>
29
30 License:
31 LGPL
32
33 Maintainer:
34 bug-libtool@gnu.org