fix regexp compile
[vuplus_openembedded] / libtomcrypt / libtomcrypt-0.93 / install.patch
1
2 #
3 # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4 #
5
6 --- libtomcrypt-0.93/makefile~install   2004-01-25 19:40:32.000000000 +0100
7 +++ libtomcrypt-0.93/makefile   2004-03-11 18:16:57.000000000 +0100
8 @@ -129,13 +129,13 @@
9  #This rule installs the library and the header files. This must be run
10  #as root in order to have a high enough permission to write to the correct
11  #directories and to set the owner and group to root.
12 -install: library docs
13 -       install -d -g root -o root $(DESTDIR)$(LIBPATH)
14 -       install -d -g root -o root $(DESTDIR)$(INCPATH)
15 -       install -d -g root -o root $(DESTDIR)$(DATAPATH)
16 -       install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH)
17 -       install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH)
18 -       install -g root -o root crypt.pdf $(DESTDIR)$(DATAPATH)
19 +install: library
20 +       install -d $(DESTDIR)$(LIBPATH)
21 +       install -d $(DESTDIR)$(INCPATH)
22 +       install -d $(DESTDIR)$(DATAPATH)
23 +       install $(LIBNAME) $(DESTDIR)$(LIBPATH)
24 +       install $(HEADERS) $(DESTDIR)$(INCPATH)
25 +       install crypt.pdf $(DESTDIR)$(DATAPATH)
26  
27  #This rule cleans the source tree of all compiled code, not including the pdf
28  #documentation.