~ubuntu-branches/ubuntu/natty/file-roller/natty-proposed

« back to all changes in this revision

Viewing changes to debian/patches/70_autotools.patch

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-04-29 12:39:32 UTC
  • Revision ID: james.westby@ubuntu.com-20100429123932-wr15bv4x1ngjater
Tags: 2.30.1.1-0ubuntu2
* debian/patches/70_autotools.patch: (LP: #571589)
  - use autoreconf

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
 
2
Index: file-roller-2.30.1.1/Makefile.in
 
3
===================================================================
 
4
--- file-roller-2.30.1.1.orig/Makefile.in       2010-04-29 12:41:46.965611001 +0200
 
5
+++ file-roller-2.30.1.1/Makefile.in    2010-04-29 12:43:43.538611764 +0200
 
6
@@ -175,6 +175,7 @@
 
7
 LIPO = @LIPO@
 
8
 LN_S = @LN_S@
 
9
 LTLIBOBJS = @LTLIBOBJS@
 
10
+MAINT = @MAINT@
 
11
 MAKEINFO = @MAKEINFO@
 
12
 MKDIR_P = @MKDIR_P@
 
13
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
14
@@ -326,7 +327,7 @@
 
15
 .SUFFIXES:
 
16
 am--refresh:
 
17
        @:
 
18
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
19
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
20
        @for dep in $?; do \
 
21
          case '$(am__configure_deps)' in \
 
22
            *$$dep*) \
 
23
@@ -353,9 +354,9 @@
 
24
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
25
        $(SHELL) ./config.status --recheck
 
26
 
 
27
-$(top_srcdir)/configure:  $(am__configure_deps)
 
28
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
29
        $(am__cd) $(srcdir) && $(AUTOCONF)
 
30
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
31
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
32
        $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
 
33
 $(am__aclocal_m4_deps):
 
34
 
 
35
@@ -368,7 +369,7 @@
 
36
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
 
37
        @rm -f stamp-h1
 
38
        cd $(top_builddir) && $(SHELL) ./config.status config.h
 
39
-$(srcdir)/config.h.in:  $(am__configure_deps) 
 
40
+$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 
 
41
        ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
 
42
        rm -f stamp-h1
 
43
        touch $@
 
44
Index: file-roller-2.30.1.1/aclocal.m4
 
45
===================================================================
 
46
--- file-roller-2.30.1.1.orig/aclocal.m4        2010-04-29 12:42:01.817611966 +0200
 
47
+++ file-roller-2.30.1.1/aclocal.m4     2010-04-29 12:43:31.749612403 +0200
 
48
@@ -9523,6 +9523,46 @@
 
49
 rmdir .tst 2>/dev/null
 
50
 AC_SUBST([am__leading_dot])])
 
51
 
 
52
+# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
 
53
+# From Jim Meyering
 
54
+
 
55
+# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
 
56
+# Free Software Foundation, Inc.
 
57
+#
 
58
+# This file is free software; the Free Software Foundation
 
59
+# gives unlimited permission to copy and/or distribute it,
 
60
+# with or without modifications, as long as this notice is preserved.
 
61
+
 
62
+# serial 5
 
63
+
 
64
+# AM_MAINTAINER_MODE([DEFAULT-MODE])
 
65
+# ----------------------------------
 
66
+# Control maintainer-specific portions of Makefiles.
 
67
+# Default is to disable them, unless `enable' is passed literally.
 
68
+# For symmetry, `disable' may be passed as well.  Anyway, the user
 
69
+# can override the default with the --enable/--disable switch.
 
70
+AC_DEFUN([AM_MAINTAINER_MODE],
 
71
+[m4_case(m4_default([$1], [disable]),
 
72
+       [enable], [m4_define([am_maintainer_other], [disable])],
 
73
+       [disable], [m4_define([am_maintainer_other], [enable])],
 
74
+       [m4_define([am_maintainer_other], [enable])
 
75
+        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
 
76
+AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
 
77
+  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
 
78
+  AC_ARG_ENABLE([maintainer-mode],
 
79
+[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
 
80
+                         (and sometimes confusing) to the casual installer],
 
81
+      [USE_MAINTAINER_MODE=$enableval],
 
82
+      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
 
83
+  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
 
84
+  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
 
85
+  MAINT=$MAINTAINER_MODE_TRUE
 
86
+  AC_SUBST([MAINT])dnl
 
87
+]
 
88
+)
 
89
+
 
90
+AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
91
+
 
92
 # Check to see how 'make' treats includes.                 -*- Autoconf -*-
 
93
 
 
94
 # Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.
2
95
Index: file-roller-2.30.1.1/configure
3
96
===================================================================
4
 
--- file-roller-2.30.1.1.orig/configure 2010-04-29 09:55:12.854612368 +0200
5
 
+++ file-roller-2.30.1.1/configure      2010-04-29 10:02:22.885611007 +0200
 
97
--- file-roller-2.30.1.1.orig/configure 2010-04-29 12:41:36.485611450 +0200
 
98
+++ file-roller-2.30.1.1/configure      2010-04-29 12:43:38.334610985 +0200
6
99
@@ -872,6 +872,9 @@
7
100
 CFLAGS
8
101
 CC
242
335
 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
243
336
   as_fn_error "conditional \"AMDEP\" was never defined.
244
337
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
338
Index: file-roller-2.30.1.1/copy-n-paste/Makefile.in
 
339
===================================================================
 
340
--- file-roller-2.30.1.1.orig/copy-n-paste/Makefile.in  2010-04-29 12:41:36.045612093 +0200
 
341
+++ file-roller-2.30.1.1/copy-n-paste/Makefile.in       2010-04-29 12:43:40.705612886 +0200
 
342
@@ -158,6 +158,7 @@
 
343
 LIPO = @LIPO@
 
344
 LN_S = @LN_S@
 
345
 LTLIBOBJS = @LTLIBOBJS@
 
346
+MAINT = @MAINT@
 
347
 MAKEINFO = @MAKEINFO@
 
348
 MKDIR_P = @MKDIR_P@
 
349
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
350
@@ -267,7 +268,7 @@
 
351
 
 
352
 .SUFFIXES:
 
353
 .SUFFIXES: .c .lo .o .obj
 
354
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
355
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
356
        @for dep in $?; do \
 
357
          case '$(am__configure_deps)' in \
 
358
            *$$dep*) \
 
359
@@ -292,9 +293,9 @@
 
360
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
361
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
362
 
 
363
-$(top_srcdir)/configure:  $(am__configure_deps)
 
364
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
365
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
366
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
367
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
368
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
369
 $(am__aclocal_m4_deps):
 
370
 
 
371
Index: file-roller-2.30.1.1/data/Makefile.in
 
372
===================================================================
 
373
--- file-roller-2.30.1.1.orig/data/Makefile.in  2010-04-29 12:42:15.338611143 +0200
 
374
+++ file-roller-2.30.1.1/data/Makefile.in       2010-04-29 12:43:40.865612199 +0200
 
375
@@ -187,6 +187,7 @@
 
376
 LIPO = @LIPO@
 
377
 LN_S = @LN_S@
 
378
 LTLIBOBJS = @LTLIBOBJS@
 
379
+MAINT = @MAINT@
 
380
 MAKEINFO = @MAKEINFO@
 
381
 MKDIR_P = @MKDIR_P@
 
382
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
383
@@ -302,7 +303,7 @@
 
384
 all: all-recursive
 
385
 
 
386
 .SUFFIXES:
 
387
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
388
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
389
        @for dep in $?; do \
 
390
          case '$(am__configure_deps)' in \
 
391
            *$$dep*) \
 
392
@@ -327,9 +328,9 @@
 
393
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
394
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
395
 
 
396
-$(top_srcdir)/configure:  $(am__configure_deps)
 
397
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
398
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
399
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
400
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
401
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
402
 $(am__aclocal_m4_deps):
 
403
 file-roller.desktop.in: $(top_builddir)/config.status $(srcdir)/file-roller.desktop.in.in
 
404
Index: file-roller-2.30.1.1/data/icons/16x16/Makefile.in
 
405
===================================================================
 
406
--- file-roller-2.30.1.1.orig/data/icons/16x16/Makefile.in      2010-04-29 12:42:21.538611834 +0200
 
407
+++ file-roller-2.30.1.1/data/icons/16x16/Makefile.in   2010-04-29 12:43:40.933611825 +0200
 
408
@@ -161,6 +161,7 @@
 
409
 LIPO = @LIPO@
 
410
 LN_S = @LN_S@
 
411
 LTLIBOBJS = @LTLIBOBJS@
 
412
+MAINT = @MAINT@
 
413
 MAKEINFO = @MAKEINFO@
 
414
 MKDIR_P = @MKDIR_P@
 
415
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
416
@@ -255,7 +256,7 @@
 
417
 all: all-recursive
 
418
 
 
419
 .SUFFIXES:
 
420
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
421
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
422
        @for dep in $?; do \
 
423
          case '$(am__configure_deps)' in \
 
424
            *$$dep*) \
 
425
@@ -280,9 +281,9 @@
 
426
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
427
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
428
 
 
429
-$(top_srcdir)/configure:  $(am__configure_deps)
 
430
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
431
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
432
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
433
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
434
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
435
 $(am__aclocal_m4_deps):
 
436
 
 
437
Index: file-roller-2.30.1.1/data/icons/16x16/actions/Makefile.in
 
438
===================================================================
 
439
--- file-roller-2.30.1.1.orig/data/icons/16x16/actions/Makefile.in      2010-04-29 12:42:22.354612198 +0200
 
440
+++ file-roller-2.30.1.1/data/icons/16x16/actions/Makefile.in   2010-04-29 12:43:41.033612732 +0200
 
441
@@ -145,6 +145,7 @@
 
442
 LIPO = @LIPO@
 
443
 LN_S = @LN_S@
 
444
 LTLIBOBJS = @LTLIBOBJS@
 
445
+MAINT = @MAINT@
 
446
 MAKEINFO = @MAKEINFO@
 
447
 MKDIR_P = @MKDIR_P@
 
448
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
449
@@ -252,7 +253,7 @@
 
450
 all: all-am
 
451
 
 
452
 .SUFFIXES:
 
453
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
454
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
455
        @for dep in $?; do \
 
456
          case '$(am__configure_deps)' in \
 
457
            *$$dep*) \
 
458
@@ -277,9 +278,9 @@
 
459
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
460
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
461
 
 
462
-$(top_srcdir)/configure:  $(am__configure_deps)
 
463
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
464
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
465
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
466
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
467
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
468
 $(am__aclocal_m4_deps):
 
469
 
 
470
Index: file-roller-2.30.1.1/data/icons/16x16/apps/Makefile.in
 
471
===================================================================
 
472
--- file-roller-2.30.1.1.orig/data/icons/16x16/apps/Makefile.in 2010-04-29 12:42:21.818613841 +0200
 
473
+++ file-roller-2.30.1.1/data/icons/16x16/apps/Makefile.in      2010-04-29 12:43:41.129611947 +0200
 
474
@@ -145,6 +145,7 @@
 
475
 LIPO = @LIPO@
 
476
 LN_S = @LN_S@
 
477
 LTLIBOBJS = @LTLIBOBJS@
 
478
+MAINT = @MAINT@
 
479
 MAKEINFO = @MAKEINFO@
 
480
 MKDIR_P = @MKDIR_P@
 
481
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
482
@@ -251,7 +252,7 @@
 
483
 all: all-am
 
484
 
 
485
 .SUFFIXES:
 
486
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
487
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
488
        @for dep in $?; do \
 
489
          case '$(am__configure_deps)' in \
 
490
            *$$dep*) \
 
491
@@ -276,9 +277,9 @@
 
492
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
493
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
494
 
 
495
-$(top_srcdir)/configure:  $(am__configure_deps)
 
496
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
497
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
498
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
499
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
500
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
501
 $(am__aclocal_m4_deps):
 
502
 
 
503
Index: file-roller-2.30.1.1/data/icons/22x22/Makefile.in
 
504
===================================================================
 
505
--- file-roller-2.30.1.1.orig/data/icons/22x22/Makefile.in      2010-04-29 12:42:18.386610954 +0200
 
506
+++ file-roller-2.30.1.1/data/icons/22x22/Makefile.in   2010-04-29 12:43:41.245612104 +0200
 
507
@@ -161,6 +161,7 @@
 
508
 LIPO = @LIPO@
 
509
 LN_S = @LN_S@
 
510
 LTLIBOBJS = @LTLIBOBJS@
 
511
+MAINT = @MAINT@
 
512
 MAKEINFO = @MAKEINFO@
 
513
 MKDIR_P = @MKDIR_P@
 
514
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
515
@@ -255,7 +256,7 @@
 
516
 all: all-recursive
 
517
 
 
518
 .SUFFIXES:
 
519
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
520
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
521
        @for dep in $?; do \
 
522
          case '$(am__configure_deps)' in \
 
523
            *$$dep*) \
 
524
@@ -280,9 +281,9 @@
 
525
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
526
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
527
 
 
528
-$(top_srcdir)/configure:  $(am__configure_deps)
 
529
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
530
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
531
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
532
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
533
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
534
 $(am__aclocal_m4_deps):
 
535
 
 
536
Index: file-roller-2.30.1.1/data/icons/22x22/apps/Makefile.in
 
537
===================================================================
 
538
--- file-roller-2.30.1.1.orig/data/icons/22x22/apps/Makefile.in 2010-04-29 12:42:18.894610644 +0200
 
539
+++ file-roller-2.30.1.1/data/icons/22x22/apps/Makefile.in      2010-04-29 12:43:41.349612261 +0200
 
540
@@ -145,6 +145,7 @@
 
541
 LIPO = @LIPO@
 
542
 LN_S = @LN_S@
 
543
 LTLIBOBJS = @LTLIBOBJS@
 
544
+MAINT = @MAINT@
 
545
 MAKEINFO = @MAKEINFO@
 
546
 MKDIR_P = @MKDIR_P@
 
547
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
548
@@ -251,7 +252,7 @@
 
549
 all: all-am
 
550
 
 
551
 .SUFFIXES:
 
552
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
553
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
554
        @for dep in $?; do \
 
555
          case '$(am__configure_deps)' in \
 
556
            *$$dep*) \
 
557
@@ -276,9 +277,9 @@
 
558
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
559
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
560
 
 
561
-$(top_srcdir)/configure:  $(am__configure_deps)
 
562
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
563
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
564
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
565
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
566
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
567
 $(am__aclocal_m4_deps):
 
568
 
 
569
Index: file-roller-2.30.1.1/data/icons/24x24/Makefile.in
 
570
===================================================================
 
571
--- file-roller-2.30.1.1.orig/data/icons/24x24/Makefile.in      2010-04-29 12:42:20.322611554 +0200
 
572
+++ file-roller-2.30.1.1/data/icons/24x24/Makefile.in   2010-04-29 12:43:41.469612279 +0200
 
573
@@ -161,6 +161,7 @@
 
574
 LIPO = @LIPO@
 
575
 LN_S = @LN_S@
 
576
 LTLIBOBJS = @LTLIBOBJS@
 
577
+MAINT = @MAINT@
 
578
 MAKEINFO = @MAKEINFO@
 
579
 MKDIR_P = @MKDIR_P@
 
580
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
581
@@ -255,7 +256,7 @@
 
582
 all: all-recursive
 
583
 
 
584
 .SUFFIXES:
 
585
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
586
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
587
        @for dep in $?; do \
 
588
          case '$(am__configure_deps)' in \
 
589
            *$$dep*) \
 
590
@@ -280,9 +281,9 @@
 
591
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
592
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
593
 
 
594
-$(top_srcdir)/configure:  $(am__configure_deps)
 
595
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
596
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
597
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
598
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
599
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
600
 $(am__aclocal_m4_deps):
 
601
 
 
602
Index: file-roller-2.30.1.1/data/icons/24x24/actions/Makefile.in
 
603
===================================================================
 
604
--- file-roller-2.30.1.1.orig/data/icons/24x24/actions/Makefile.in      2010-04-29 12:42:21.122613851 +0200
 
605
+++ file-roller-2.30.1.1/data/icons/24x24/actions/Makefile.in   2010-04-29 12:43:41.537611148 +0200
 
606
@@ -145,6 +145,7 @@
 
607
 LIPO = @LIPO@
 
608
 LN_S = @LN_S@
 
609
 LTLIBOBJS = @LTLIBOBJS@
 
610
+MAINT = @MAINT@
 
611
 MAKEINFO = @MAKEINFO@
 
612
 MKDIR_P = @MKDIR_P@
 
613
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
614
@@ -252,7 +253,7 @@
 
615
 all: all-am
 
616
 
 
617
 .SUFFIXES:
 
618
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
619
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
620
        @for dep in $?; do \
 
621
          case '$(am__configure_deps)' in \
 
622
            *$$dep*) \
 
623
@@ -277,9 +278,9 @@
 
624
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
625
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
626
 
 
627
-$(top_srcdir)/configure:  $(am__configure_deps)
 
628
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
629
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
630
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
631
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
632
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
633
 $(am__aclocal_m4_deps):
 
634
 
 
635
Index: file-roller-2.30.1.1/data/icons/24x24/apps/Makefile.in
 
636
===================================================================
 
637
--- file-roller-2.30.1.1.orig/data/icons/24x24/apps/Makefile.in 2010-04-29 12:42:20.594613506 +0200
 
638
+++ file-roller-2.30.1.1/data/icons/24x24/apps/Makefile.in      2010-04-29 12:43:41.605612530 +0200
 
639
@@ -145,6 +145,7 @@
 
640
 LIPO = @LIPO@
 
641
 LN_S = @LN_S@
 
642
 LTLIBOBJS = @LTLIBOBJS@
 
643
+MAINT = @MAINT@
 
644
 MAKEINFO = @MAKEINFO@
 
645
 MKDIR_P = @MKDIR_P@
 
646
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
647
@@ -251,7 +252,7 @@
 
648
 all: all-am
 
649
 
 
650
 .SUFFIXES:
 
651
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
652
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
653
        @for dep in $?; do \
 
654
          case '$(am__configure_deps)' in \
 
655
            *$$dep*) \
 
656
@@ -276,9 +277,9 @@
 
657
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
658
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
659
 
 
660
-$(top_srcdir)/configure:  $(am__configure_deps)
 
661
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
662
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
663
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
664
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
665
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
666
 $(am__aclocal_m4_deps):
 
667
 
 
668
Index: file-roller-2.30.1.1/data/icons/32x32/Makefile.in
 
669
===================================================================
 
670
--- file-roller-2.30.1.1.orig/data/icons/32x32/Makefile.in      2010-04-29 12:42:19.654611078 +0200
 
671
+++ file-roller-2.30.1.1/data/icons/32x32/Makefile.in   2010-04-29 12:43:41.673613286 +0200
 
672
@@ -161,6 +161,7 @@
 
673
 LIPO = @LIPO@
 
674
 LN_S = @LN_S@
 
675
 LTLIBOBJS = @LTLIBOBJS@
 
676
+MAINT = @MAINT@
 
677
 MAKEINFO = @MAKEINFO@
 
678
 MKDIR_P = @MKDIR_P@
 
679
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
680
@@ -255,7 +256,7 @@
 
681
 all: all-recursive
 
682
 
 
683
 .SUFFIXES:
 
684
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
685
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
686
        @for dep in $?; do \
 
687
          case '$(am__configure_deps)' in \
 
688
            *$$dep*) \
 
689
@@ -280,9 +281,9 @@
 
690
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
691
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
692
 
 
693
-$(top_srcdir)/configure:  $(am__configure_deps)
 
694
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
695
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
696
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
697
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
698
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
699
 $(am__aclocal_m4_deps):
 
700
 
 
701
Index: file-roller-2.30.1.1/data/icons/32x32/apps/Makefile.in
 
702
===================================================================
 
703
--- file-roller-2.30.1.1.orig/data/icons/32x32/apps/Makefile.in 2010-04-29 12:42:19.886613539 +0200
 
704
+++ file-roller-2.30.1.1/data/icons/32x32/apps/Makefile.in      2010-04-29 12:43:41.745611896 +0200
 
705
@@ -145,6 +145,7 @@
 
706
 LIPO = @LIPO@
 
707
 LN_S = @LN_S@
 
708
 LTLIBOBJS = @LTLIBOBJS@
 
709
+MAINT = @MAINT@
 
710
 MAKEINFO = @MAKEINFO@
 
711
 MKDIR_P = @MKDIR_P@
 
712
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
713
@@ -251,7 +252,7 @@
 
714
 all: all-am
 
715
 
 
716
 .SUFFIXES:
 
717
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
718
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
719
        @for dep in $?; do \
 
720
          case '$(am__configure_deps)' in \
 
721
            *$$dep*) \
 
722
@@ -276,9 +277,9 @@
 
723
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
724
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
725
 
 
726
-$(top_srcdir)/configure:  $(am__configure_deps)
 
727
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
728
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
729
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
730
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
731
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
732
 $(am__aclocal_m4_deps):
 
733
 
 
734
Index: file-roller-2.30.1.1/data/icons/Makefile.in
 
735
===================================================================
 
736
--- file-roller-2.30.1.1.orig/data/icons/Makefile.in    2010-04-29 12:42:19.386613469 +0200
 
737
+++ file-roller-2.30.1.1/data/icons/Makefile.in 2010-04-29 12:43:41.813611460 +0200
 
738
@@ -161,6 +161,7 @@
 
739
 LIPO = @LIPO@
 
740
 LN_S = @LN_S@
 
741
 LTLIBOBJS = @LTLIBOBJS@
 
742
+MAINT = @MAINT@
 
743
 MAKEINFO = @MAKEINFO@
 
744
 MKDIR_P = @MKDIR_P@
 
745
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
746
@@ -255,7 +256,7 @@
 
747
 all: all-recursive
 
748
 
 
749
 .SUFFIXES:
 
750
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
751
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
752
        @for dep in $?; do \
 
753
          case '$(am__configure_deps)' in \
 
754
            *$$dep*) \
 
755
@@ -280,9 +281,9 @@
 
756
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
757
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
758
 
 
759
-$(top_srcdir)/configure:  $(am__configure_deps)
 
760
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
761
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
762
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
763
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
764
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
765
 $(am__aclocal_m4_deps):
 
766
 
 
767
Index: file-roller-2.30.1.1/data/icons/scalable/Makefile.in
 
768
===================================================================
 
769
--- file-roller-2.30.1.1.orig/data/icons/scalable/Makefile.in   2010-04-29 12:42:17.590611741 +0200
 
770
+++ file-roller-2.30.1.1/data/icons/scalable/Makefile.in        2010-04-29 12:43:41.885613621 +0200
 
771
@@ -161,6 +161,7 @@
 
772
 LIPO = @LIPO@
 
773
 LN_S = @LN_S@
 
774
 LTLIBOBJS = @LTLIBOBJS@
 
775
+MAINT = @MAINT@
 
776
 MAKEINFO = @MAKEINFO@
 
777
 MKDIR_P = @MKDIR_P@
 
778
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
779
@@ -255,7 +256,7 @@
 
780
 all: all-recursive
 
781
 
 
782
 .SUFFIXES:
 
783
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
784
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
785
        @for dep in $?; do \
 
786
          case '$(am__configure_deps)' in \
 
787
            *$$dep*) \
 
788
@@ -280,9 +281,9 @@
 
789
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
790
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
791
 
 
792
-$(top_srcdir)/configure:  $(am__configure_deps)
 
793
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
794
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
795
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
796
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
797
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
798
 $(am__aclocal_m4_deps):
 
799
 
 
800
Index: file-roller-2.30.1.1/data/icons/scalable/apps/Makefile.in
 
801
===================================================================
 
802
--- file-roller-2.30.1.1.orig/data/icons/scalable/apps/Makefile.in      2010-04-29 12:42:17.746610906 +0200
 
803
+++ file-roller-2.30.1.1/data/icons/scalable/apps/Makefile.in   2010-04-29 12:43:41.957612081 +0200
 
804
@@ -145,6 +145,7 @@
 
805
 LIPO = @LIPO@
 
806
 LN_S = @LN_S@
 
807
 LTLIBOBJS = @LTLIBOBJS@
 
808
+MAINT = @MAINT@
 
809
 MAKEINFO = @MAKEINFO@
 
810
 MKDIR_P = @MKDIR_P@
 
811
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
812
@@ -251,7 +252,7 @@
 
813
 all: all-am
 
814
 
 
815
 .SUFFIXES:
 
816
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
817
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
818
        @for dep in $?; do \
 
819
          case '$(am__configure_deps)' in \
 
820
            *$$dep*) \
 
821
@@ -276,9 +277,9 @@
 
822
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
823
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
824
 
 
825
-$(top_srcdir)/configure:  $(am__configure_deps)
 
826
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
827
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
828
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
829
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
830
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
831
 $(am__aclocal_m4_deps):
 
832
 
 
833
Index: file-roller-2.30.1.1/data/ui/Makefile.in
 
834
===================================================================
 
835
--- file-roller-2.30.1.1.orig/data/ui/Makefile.in       2010-04-29 12:42:16.398611500 +0200
 
836
+++ file-roller-2.30.1.1/data/ui/Makefile.in    2010-04-29 12:43:42.037613870 +0200
 
837
@@ -145,6 +145,7 @@
 
838
 LIPO = @LIPO@
 
839
 LN_S = @LN_S@
 
840
 LTLIBOBJS = @LTLIBOBJS@
 
841
+MAINT = @MAINT@
 
842
 MAKEINFO = @MAKEINFO@
 
843
 MKDIR_P = @MKDIR_P@
 
844
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
845
@@ -251,7 +252,7 @@
 
846
 all: all-am
 
847
 
 
848
 .SUFFIXES:
 
849
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
850
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
851
        @for dep in $?; do \
 
852
          case '$(am__configure_deps)' in \
 
853
            *$$dep*) \
 
854
@@ -276,9 +277,9 @@
 
855
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
856
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
857
 
 
858
-$(top_srcdir)/configure:  $(am__configure_deps)
 
859
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
860
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
861
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
862
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
863
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
864
 $(am__aclocal_m4_deps):
 
865
 
 
866
Index: file-roller-2.30.1.1/help/Makefile.in
 
867
===================================================================
 
868
--- file-roller-2.30.1.1.orig/help/Makefile.in  2010-04-29 12:42:08.249612963 +0200
 
869
+++ file-roller-2.30.1.1/help/Makefile.in       2010-04-29 12:43:42.165612825 +0200
 
870
@@ -146,6 +146,7 @@
 
871
 LIPO = @LIPO@
 
872
 LN_S = @LN_S@
 
873
 LTLIBOBJS = @LTLIBOBJS@
 
874
+MAINT = @MAINT@
 
875
 MAKEINFO = @MAKEINFO@
 
876
 MKDIR_P = @MKDIR_P@
 
877
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
878
@@ -359,7 +360,7 @@
 
879
 all: all-am
 
880
 
 
881
 .SUFFIXES:
 
882
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/gnome-doc-utils.make $(am__configure_deps)
 
883
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gnome-doc-utils.make $(am__configure_deps)
 
884
        @for dep in $?; do \
 
885
          case '$(am__configure_deps)' in \
 
886
            *$$dep*) \
 
887
@@ -384,9 +385,9 @@
 
888
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
889
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
890
 
 
891
-$(top_srcdir)/configure:  $(am__configure_deps)
 
892
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
893
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
894
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
895
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
896
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
897
 $(am__aclocal_m4_deps):
 
898
 
 
899
Index: file-roller-2.30.1.1/nautilus/Makefile.in
 
900
===================================================================
 
901
--- file-roller-2.30.1.1.orig/nautilus/Makefile.in      2010-04-29 12:42:23.386613539 +0200
 
902
+++ file-roller-2.30.1.1/nautilus/Makefile.in   2010-04-29 12:43:42.265612481 +0200
 
903
@@ -180,6 +180,7 @@
 
904
 LIPO = @LIPO@
 
905
 LN_S = @LN_S@
 
906
 LTLIBOBJS = @LTLIBOBJS@
 
907
+MAINT = @MAINT@
 
908
 MAKEINFO = @MAKEINFO@
 
909
 MKDIR_P = @MKDIR_P@
 
910
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
911
@@ -294,7 +295,7 @@
 
912
 
 
913
 .SUFFIXES:
 
914
 .SUFFIXES: .c .lo .o .obj
 
915
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
916
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
917
        @for dep in $?; do \
 
918
          case '$(am__configure_deps)' in \
 
919
            *$$dep*) \
 
920
@@ -319,9 +320,9 @@
 
921
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
922
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
923
 
 
924
-$(top_srcdir)/configure:  $(am__configure_deps)
 
925
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
926
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
927
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
928
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
929
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
930
 $(am__aclocal_m4_deps):
 
931
 install-nautilus_extensionLTLIBRARIES: $(nautilus_extension_LTLIBRARIES)
 
932
Index: file-roller-2.30.1.1/src/Makefile.in
 
933
===================================================================
 
934
--- file-roller-2.30.1.1.orig/src/Makefile.in   2010-04-29 12:41:29.698611645 +0200
 
935
+++ file-roller-2.30.1.1/src/Makefile.in        2010-04-29 12:43:42.641626326 +0200
 
936
@@ -247,6 +247,7 @@
 
937
 LIPO = @LIPO@
 
938
 LN_S = @LN_S@
 
939
 LTLIBOBJS = @LTLIBOBJS@
 
940
+MAINT = @MAINT@
 
941
 MAKEINFO = @MAKEINFO@
 
942
 MKDIR_P = @MKDIR_P@
 
943
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
944
@@ -490,7 +491,7 @@
 
945
 
 
946
 .SUFFIXES:
 
947
 .SUFFIXES: .c .lo .o .obj
 
948
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
949
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
950
        @for dep in $?; do \
 
951
          case '$(am__configure_deps)' in \
 
952
            *$$dep*) \
 
953
@@ -515,9 +516,9 @@
 
954
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
955
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
956
 
 
957
-$(top_srcdir)/configure:  $(am__configure_deps)
 
958
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
959
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
960
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
961
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
962
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
963
 $(am__aclocal_m4_deps):
 
964
 install-binPROGRAMS: $(bin_PROGRAMS)
 
965
Index: file-roller-2.30.1.1/src/commands/Makefile.in
 
966
===================================================================
 
967
--- file-roller-2.30.1.1.orig/src/commands/Makefile.in  2010-04-29 12:41:34.745613502 +0200
 
968
+++ file-roller-2.30.1.1/src/commands/Makefile.in       2010-04-29 12:43:42.721612127 +0200
 
969
@@ -154,6 +154,7 @@
 
970
 LIPO = @LIPO@
 
971
 LN_S = @LN_S@
 
972
 LTLIBOBJS = @LTLIBOBJS@
 
973
+MAINT = @MAINT@
 
974
 MAKEINFO = @MAKEINFO@
 
975
 MKDIR_P = @MKDIR_P@
 
976
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
977
@@ -252,7 +253,7 @@
 
978
 
 
979
 .SUFFIXES:
 
980
 .SUFFIXES: .c .lo .o .obj
 
981
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
982
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
983
        @for dep in $?; do \
 
984
          case '$(am__configure_deps)' in \
 
985
            *$$dep*) \
 
986
@@ -277,9 +278,9 @@
 
987
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
988
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
989
 
 
990
-$(top_srcdir)/configure:  $(am__configure_deps)
 
991
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
992
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
993
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
994
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
995
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
996
 $(am__aclocal_m4_deps):
 
997
 install-privexecPROGRAMS: $(privexec_PROGRAMS)
 
998
Index: file-roller-2.30.1.1/src/sh/Makefile.in
 
999
===================================================================
 
1000
--- file-roller-2.30.1.1.orig/src/sh/Makefile.in        2010-04-29 12:41:30.626611776 +0200
 
1001
+++ file-roller-2.30.1.1/src/sh/Makefile.in     2010-04-29 12:43:42.785612790 +0200
 
1002
@@ -145,6 +145,7 @@
 
1003
 LIPO = @LIPO@
 
1004
 LN_S = @LN_S@
 
1005
 LTLIBOBJS = @LTLIBOBJS@
 
1006
+MAINT = @MAINT@
 
1007
 MAKEINFO = @MAKEINFO@
 
1008
 MKDIR_P = @MKDIR_P@
 
1009
 MKINSTALLDIRS = @MKINSTALLDIRS@
 
1010
@@ -241,7 +242,7 @@
 
1011
 all: all-am
 
1012
 
 
1013
 .SUFFIXES:
 
1014
-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
1015
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
 
1016
        @for dep in $?; do \
 
1017
          case '$(am__configure_deps)' in \
 
1018
            *$$dep*) \
 
1019
@@ -266,9 +267,9 @@
 
1020
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
1021
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
1022
 
 
1023
-$(top_srcdir)/configure:  $(am__configure_deps)
 
1024
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
 
1025
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
1026
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
1027
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
 
1028
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
1029
 $(am__aclocal_m4_deps):
 
1030