-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgmake_install.out.orig
1535 lines (1535 loc) · 95.3 KB
/
gmake_install.out.orig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
make -C ./src/backend generated-headers
make[1]: Entering directory '/home/nadesh/git/postgresql/src/backend'
make -C catalog distprep generated-header-symlinks
make[2]: Entering directory '/home/nadesh/git/postgresql/src/backend/catalog'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/backend/catalog'
make -C utils distprep generated-header-symlinks
make[2]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils'
make[2]: Nothing to be done for 'distprep'.
make[2]: Nothing to be done for 'generated-header-symlinks'.
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils'
make[1]: Leaving directory '/home/nadesh/git/postgresql/src/backend'
make -C src install
make[1]: Entering directory '/home/nadesh/git/postgresql/src'
make -C common install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/common'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 644 libpgcommon.a '/home/nadesh/git/postgresql/install/lib/libpgcommon.a'
/usr/bin/install -c -m 644 libpgcommon_shlib.a '/home/nadesh/git/postgresql/install/lib/libpgcommon_shlib.a'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make -C port install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/port'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 644 libpgport.a '/home/nadesh/git/postgresql/install/lib/libpgport.a'
/usr/bin/install -c -m 644 libpgport_shlib.a '/home/nadesh/git/postgresql/install/lib/libpgport_shlib.a'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C timezone install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/timezone'
make -C ../../src/port all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../src/common all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/common'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share'
./zic -d '/home/nadesh/git/postgresql/install/share/timezone' ./data/tzdata.zi
make -C tznames install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/timezone/tznames'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share/timezonesets'
/usr/bin/install -c -m 644 ./Africa.txt ./America.txt ./Antarctica.txt ./Asia.txt ./Atlantic.txt ./Australia.txt ./Etc.txt ./Europe.txt ./Indian.txt ./Pacific.txt '/home/nadesh/git/postgresql/install/share/timezonesets'
/usr/bin/install -c -m 644 ./Default ./Australia ./India '/home/nadesh/git/postgresql/install/share/timezonesets'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/timezone/tznames'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/timezone'
make -C backend install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/backend'
make -C ../../src/port all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../src/common all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make -C catalog distprep generated-header-symlinks
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/catalog'
make[3]: Nothing to be done for 'distprep'.
make[3]: Nothing to be done for 'generated-header-symlinks'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/catalog'
make -C utils distprep generated-header-symlinks
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils'
make[3]: Nothing to be done for 'distprep'.
make[3]: Nothing to be done for 'generated-header-symlinks'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils'
make -C access all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/access'
make -C brin all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/brin'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/brin'
make -C common all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/common'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/common'
make -C gin all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/gin'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/gin'
make -C gist all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/gist'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/gist'
make -C hash all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/hash'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/hash'
make -C heap all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/heap'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/heap'
make -C index all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/index'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/index'
make -C nbtree all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/nbtree'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/nbtree'
make -C rmgrdesc all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/rmgrdesc'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/rmgrdesc'
make -C spgist all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/spgist'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/spgist'
make -C table all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/table'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/table'
make -C tablesample all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/tablesample'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/tablesample'
make -C transam all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/transam'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/transam'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access'
make -C bootstrap all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/bootstrap'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/bootstrap'
make -C catalog all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/catalog'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/catalog'
make -C parser all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/parser'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/parser'
make -C commands all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/commands'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/commands'
make -C executor all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/executor'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/executor'
make -C foreign all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/foreign'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/foreign'
make -C lib all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/lib'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/lib'
make -C libpq all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/libpq'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/libpq'
make -C main all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/main'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/main'
make -C nodes all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/nodes'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/nodes'
make -C optimizer all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer'
make -C geqo all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/geqo'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/geqo'
make -C path all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/path'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/path'
make -C plan all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/plan'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/plan'
make -C prep all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/prep'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/prep'
make -C util all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/util'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/util'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer'
make -C partitioning all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/partitioning'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/partitioning'
make -C port all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/port'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/port'
make -C postmaster all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/postmaster'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/postmaster'
make -C regex all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/regex'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/regex'
make -C replication all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/replication'
make -C logical all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/replication/logical'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/replication/logical'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/replication'
make -C rewrite all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/rewrite'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/rewrite'
make -C statistics all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/statistics'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/statistics'
make -C storage all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage'
make -C buffer all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/buffer'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/buffer'
make -C file all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/file'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/file'
make -C freespace all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/freespace'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/freespace'
make -C ipc all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/ipc'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/ipc'
make -C large_object all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/large_object'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/large_object'
make -C lmgr all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/lmgr'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/lmgr'
make -C page all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/page'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/page'
make -C smgr all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/smgr'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/smgr'
make -C sync all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/sync'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/sync'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage'
make -C tcop all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/tcop'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/tcop'
make -C tsearch all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/tsearch'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/tsearch'
make -C utils all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils'
make -C activity all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/activity'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/activity'
make -C adt all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/adt'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/adt'
make -C cache all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/cache'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/cache'
make -C error all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/error'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/error'
make -C fmgr all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/fmgr'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/fmgr'
make -C hash all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/hash'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/hash'
make -C init all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/init'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/init'
make -C mb all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb'
make -C misc all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/misc'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/misc'
make -C mmgr all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mmgr'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mmgr'
make -C resowner all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/resowner'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/resowner'
make -C sort all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/sort'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/sort'
make -C time all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/time'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/time'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils'
make -C ../../src/timezone all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/timezone'
make -C ../../src/port all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../src/common all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/timezone'
make -C jit all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/jit'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/jit'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/bin' '/home/nadesh/git/postgresql/install/share'
/usr/bin/install -c postgres '/home/nadesh/git/postgresql/install/bin/postgres'
ln -s postgres '/home/nadesh/git/postgresql/install/bin/postmaster'
make -C access install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/access'
make -C brin install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/brin'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/brin'
make -C common install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/common'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/common'
make -C gin install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/gin'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/gin'
make -C gist install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/gist'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/gist'
make -C hash install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/hash'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/hash'
make -C heap install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/heap'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/heap'
make -C index install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/index'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/index'
make -C nbtree install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/nbtree'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/nbtree'
make -C rmgrdesc install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/rmgrdesc'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/rmgrdesc'
make -C spgist install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/spgist'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/spgist'
make -C table install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/table'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/table'
make -C tablesample install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/tablesample'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/tablesample'
make -C transam install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/access/transam'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access/transam'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/access'
make -C bootstrap install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/bootstrap'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/bootstrap'
make -C catalog install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/catalog'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/catalog'
make -C parser install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/parser'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/parser'
make -C commands install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/commands'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/commands'
make -C executor install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/executor'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/executor'
make -C foreign install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/foreign'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/foreign'
make -C lib install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/lib'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/lib'
make -C libpq install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/libpq'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/libpq'
make -C main install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/main'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/main'
make -C nodes install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/nodes'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/nodes'
make -C optimizer install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer'
make -C geqo install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/geqo'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/geqo'
make -C path install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/path'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/path'
make -C plan install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/plan'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/plan'
make -C prep install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/prep'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/prep'
make -C util install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/optimizer/util'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer/util'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/optimizer'
make -C partitioning install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/partitioning'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/partitioning'
make -C port install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/port'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/port'
make -C postmaster install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/postmaster'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/postmaster'
make -C regex install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/regex'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/regex'
make -C replication install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/replication'
make -C logical install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/replication/logical'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/replication/logical'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/replication'
make -C rewrite install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/rewrite'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/rewrite'
make -C statistics install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/statistics'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/statistics'
make -C storage install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage'
make -C buffer install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/buffer'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/buffer'
make -C file install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/file'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/file'
make -C freespace install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/freespace'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/freespace'
make -C ipc install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/ipc'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/ipc'
make -C large_object install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/large_object'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/large_object'
make -C lmgr install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/lmgr'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/lmgr'
make -C page install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/page'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/page'
make -C smgr install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/smgr'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/smgr'
make -C sync install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/storage/sync'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage/sync'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/storage'
make -C tcop install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/tcop'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/tcop'
make -C tsearch install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/tsearch'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/tsearch'
make -C utils install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils'
make -C activity install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/activity'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/activity'
make -C adt install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/adt'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/adt'
make -C cache install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/cache'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/cache'
make -C error install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/error'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/error'
make -C fmgr install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/fmgr'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/fmgr'
make -C hash install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/hash'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/hash'
make -C init install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/init'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/init'
make -C mb install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb'
make -C misc install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/misc'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/misc'
make -C mmgr install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mmgr'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mmgr'
make -C resowner install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/resowner'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/resowner'
make -C sort install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/sort'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/sort'
make -C time install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/time'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/time'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils'
make -C ../../src/timezone install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/timezone'
make -C ../../src/port all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../src/common all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/common'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share'
./zic -d '/home/nadesh/git/postgresql/install/share/timezone' ./data/tzdata.zi
make -C tznames install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/timezone/tznames'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share/timezonesets'
/usr/bin/install -c -m 644 ./Africa.txt ./America.txt ./Antarctica.txt ./Asia.txt ./Atlantic.txt ./Australia.txt ./Etc.txt ./Europe.txt ./Indian.txt ./Pacific.txt '/home/nadesh/git/postgresql/install/share/timezonesets'
/usr/bin/install -c -m 644 ./Default ./Australia ./India '/home/nadesh/git/postgresql/install/share/timezonesets'
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/timezone/tznames'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/timezone'
make -C jit install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/jit'
make[3]: Nothing to be done for 'install'.
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/jit'
make -C catalog install-data
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/catalog'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share'
/usr/bin/install -c -m 644 `for f in ./postgres.bki; do test -r $f && echo $f && break; done` '/home/nadesh/git/postgresql/install/share/postgres.bki'
/usr/bin/install -c -m 644 `for f in ./system_constraints.sql; do test -r $f && echo $f && break; done` '/home/nadesh/git/postgresql/install/share/system_constraints.sql'
/usr/bin/install -c -m 644 ./system_functions.sql '/home/nadesh/git/postgresql/install/share/system_functions.sql'
/usr/bin/install -c -m 644 ./system_views.sql '/home/nadesh/git/postgresql/install/share/system_views.sql'
/usr/bin/install -c -m 644 ./information_schema.sql '/home/nadesh/git/postgresql/install/share/information_schema.sql'
/usr/bin/install -c -m 644 ./sql_features.txt '/home/nadesh/git/postgresql/install/share/sql_features.txt'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/catalog'
make -C tsearch install-data
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/tsearch'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share' '/home/nadesh/git/postgresql/install/share/tsearch_data'
/usr/bin/install -c -m 644 ./dicts/synonym_sample.syn ./dicts/thesaurus_sample.ths ./dicts/hunspell_sample.affix ./dicts/ispell_sample.affix ./dicts/ispell_sample.dict ./dicts/hunspell_sample_long.affix ./dicts/hunspell_sample_long.dict ./dicts/hunspell_sample_num.affix ./dicts/hunspell_sample_num.dict '/home/nadesh/git/postgresql/install/share/tsearch_data/'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/tsearch'
make -C utils install-data
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share'
/usr/bin/install -c -m 644 ./errcodes.txt '/home/nadesh/git/postgresql/install/share/errcodes.txt'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils'
/usr/bin/install -c -m 644 ./libpq/pg_hba.conf.sample '/home/nadesh/git/postgresql/install/share/pg_hba.conf.sample'
/usr/bin/install -c -m 644 ./libpq/pg_ident.conf.sample '/home/nadesh/git/postgresql/install/share/pg_ident.conf.sample'
/usr/bin/install -c -m 644 ./utils/misc/postgresql.conf.sample '/home/nadesh/git/postgresql/install/share/postgresql.conf.sample'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/backend'
make -C backend/utils/mb/conversion_procs install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs'
make -C cyrillic_and_mic install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 cyrillic_and_mic.so '/home/nadesh/git/postgresql/install/lib/cyrillic_and_mic.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
make -C euc_cn_and_mic install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 euc_cn_and_mic.so '/home/nadesh/git/postgresql/install/lib/euc_cn_and_mic.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
make -C euc_jp_and_sjis install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 euc_jp_and_sjis.so '/home/nadesh/git/postgresql/install/lib/euc_jp_and_sjis.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
make -C euc_kr_and_mic install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 euc_kr_and_mic.so '/home/nadesh/git/postgresql/install/lib/euc_kr_and_mic.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
make -C euc_tw_and_big5 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 euc_tw_and_big5.so '/home/nadesh/git/postgresql/install/lib/euc_tw_and_big5.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
make -C latin2_and_win1250 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 latin2_and_win1250.so '/home/nadesh/git/postgresql/install/lib/latin2_and_win1250.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
make -C latin_and_mic install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/latin_and_mic'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 latin_and_mic.so '/home/nadesh/git/postgresql/install/lib/latin_and_mic.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/latin_and_mic'
make -C utf8_and_big5 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_big5'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_big5.so '/home/nadesh/git/postgresql/install/lib/utf8_and_big5.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_big5'
make -C utf8_and_cyrillic install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_cyrillic.so '/home/nadesh/git/postgresql/install/lib/utf8_and_cyrillic.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
make -C utf8_and_euc_cn install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_euc_cn.so '/home/nadesh/git/postgresql/install/lib/utf8_and_euc_cn.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
make -C utf8_and_euc_jp install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_euc_jp.so '/home/nadesh/git/postgresql/install/lib/utf8_and_euc_jp.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
make -C utf8_and_euc_kr install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_euc_kr.so '/home/nadesh/git/postgresql/install/lib/utf8_and_euc_kr.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
make -C utf8_and_euc_tw install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_euc_tw.so '/home/nadesh/git/postgresql/install/lib/utf8_and_euc_tw.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
make -C utf8_and_gb18030 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_gb18030.so '/home/nadesh/git/postgresql/install/lib/utf8_and_gb18030.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
make -C utf8_and_gbk install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_gbk.so '/home/nadesh/git/postgresql/install/lib/utf8_and_gbk.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
make -C utf8_and_iso8859 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_iso8859.so '/home/nadesh/git/postgresql/install/lib/utf8_and_iso8859.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
make -C utf8_and_iso8859_1 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_iso8859_1.so '/home/nadesh/git/postgresql/install/lib/utf8_and_iso8859_1.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
make -C utf8_and_johab install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_johab'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_johab.so '/home/nadesh/git/postgresql/install/lib/utf8_and_johab.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_johab'
make -C utf8_and_sjis install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_sjis.so '/home/nadesh/git/postgresql/install/lib/utf8_and_sjis.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
make -C utf8_and_win install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_win'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_win.so '/home/nadesh/git/postgresql/install/lib/utf8_and_win.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_win'
make -C utf8_and_uhc install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_uhc.so '/home/nadesh/git/postgresql/install/lib/utf8_and_uhc.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
make -C utf8_and_euc2004 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_euc2004.so '/home/nadesh/git/postgresql/install/lib/utf8_and_euc2004.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
make -C utf8_and_sjis2004 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 utf8_and_sjis2004.so '/home/nadesh/git/postgresql/install/lib/utf8_and_sjis2004.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
make -C euc2004_sjis2004 install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 euc2004_sjis2004.so '/home/nadesh/git/postgresql/install/lib/euc2004_sjis2004.so'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/backend/utils/mb/conversion_procs'
make -C backend/snowball install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/backend/snowball'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/share' '/home/nadesh/git/postgresql/install/share/tsearch_data'
/usr/bin/install -c -m 755 dict_snowball.so '/home/nadesh/git/postgresql/install/lib/dict_snowball.so'
/usr/bin/install -c -m 644 snowball_create.sql '/home/nadesh/git/postgresql/install/share'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/backend/snowball'
make -C include install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/include'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/include/libpq' '/home/nadesh/git/postgresql/install/include/internal/libpq'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/include/server'/access '/home/nadesh/git/postgresql/install/include/server'/bootstrap '/home/nadesh/git/postgresql/install/include/server'/catalog '/home/nadesh/git/postgresql/install/include/server'/commands '/home/nadesh/git/postgresql/install/include/server'/common '/home/nadesh/git/postgresql/install/include/server'/datatype '/home/nadesh/git/postgresql/install/include/server'/executor '/home/nadesh/git/postgresql/install/include/server'/fe_utils '/home/nadesh/git/postgresql/install/include/server'/foreign '/home/nadesh/git/postgresql/install/include/server'/jit '/home/nadesh/git/postgresql/install/include/server'/lib '/home/nadesh/git/postgresql/install/include/server'/libpq '/home/nadesh/git/postgresql/install/include/server'/mb '/home/nadesh/git/postgresql/install/include/server'/nodes '/home/nadesh/git/postgresql/install/include/server'/optimizer '/home/nadesh/git/postgresql/install/include/server'/parser '/home/nadesh/git/postgresql/install/include/server'/partitioning '/home/nadesh/git/postgresql/install/include/server'/postmaster '/home/nadesh/git/postgresql/install/include/server'/regex '/home/nadesh/git/postgresql/install/include/server'/replication '/home/nadesh/git/postgresql/install/include/server'/rewrite '/home/nadesh/git/postgresql/install/include/server'/statistics '/home/nadesh/git/postgresql/install/include/server'/storage '/home/nadesh/git/postgresql/install/include/server'/tcop '/home/nadesh/git/postgresql/install/include/server'/snowball '/home/nadesh/git/postgresql/install/include/server'/snowball/libstemmer '/home/nadesh/git/postgresql/install/include/server'/tsearch '/home/nadesh/git/postgresql/install/include/server'/tsearch/dicts '/home/nadesh/git/postgresql/install/include/server'/utils '/home/nadesh/git/postgresql/install/include/server'/port '/home/nadesh/git/postgresql/install/include/server'/port/atomics '/home/nadesh/git/postgresql/install/include/server'/port/win32 '/home/nadesh/git/postgresql/install/include/server'/port/win32_msvc '/home/nadesh/git/postgresql/install/include/server'/port/win32_msvc/sys '/home/nadesh/git/postgresql/install/include/server'/port/win32/arpa '/home/nadesh/git/postgresql/install/include/server'/port/win32/netinet '/home/nadesh/git/postgresql/install/include/server'/port/win32/sys '/home/nadesh/git/postgresql/install/include/server'/portability
/usr/bin/install -c -m 644 ./postgres_ext.h '/home/nadesh/git/postgresql/install/include'
/usr/bin/install -c -m 644 ./libpq/libpq-fs.h '/home/nadesh/git/postgresql/install/include/libpq'
/usr/bin/install -c -m 644 pg_config.h '/home/nadesh/git/postgresql/install/include'
/usr/bin/install -c -m 644 pg_config_ext.h '/home/nadesh/git/postgresql/install/include'
/usr/bin/install -c -m 644 pg_config_os.h '/home/nadesh/git/postgresql/install/include'
/usr/bin/install -c -m 644 ./pg_config_manual.h '/home/nadesh/git/postgresql/install/include'
/usr/bin/install -c -m 644 ./c.h '/home/nadesh/git/postgresql/install/include/internal'
/usr/bin/install -c -m 644 ./port.h '/home/nadesh/git/postgresql/install/include/internal'
/usr/bin/install -c -m 644 ./postgres_fe.h '/home/nadesh/git/postgresql/install/include/internal'
/usr/bin/install -c -m 644 ./libpq/pqcomm.h '/home/nadesh/git/postgresql/install/include/internal/libpq'
/usr/bin/install -c -m 644 pg_config.h '/home/nadesh/git/postgresql/install/include/server'
/usr/bin/install -c -m 644 pg_config_ext.h '/home/nadesh/git/postgresql/install/include/server'
/usr/bin/install -c -m 644 pg_config_os.h '/home/nadesh/git/postgresql/install/include/server'
/usr/bin/install -c -m 644 utils/errcodes.h '/home/nadesh/git/postgresql/install/include/server/utils'
/usr/bin/install -c -m 644 utils/fmgroids.h '/home/nadesh/git/postgresql/install/include/server/utils'
/usr/bin/install -c -m 644 utils/fmgrprotos.h '/home/nadesh/git/postgresql/install/include/server/utils'
cp ./*.h '/home/nadesh/git/postgresql/install/include/server'/
for dir in access bootstrap catalog commands common datatype executor fe_utils foreign jit lib libpq mb nodes optimizer parser partitioning postmaster regex replication rewrite statistics storage tcop snowball snowball/libstemmer tsearch tsearch/dicts utils port port/atomics port/win32 port/win32_msvc port/win32_msvc/sys port/win32/arpa port/win32/netinet port/win32/sys portability; do \
cp ./$dir/*.h '/home/nadesh/git/postgresql/install/include/server'/$dir/ || exit; \
done
cd '/home/nadesh/git/postgresql/install/include/server' && chmod 644 *.h
for dir in access bootstrap catalog commands common datatype executor fe_utils foreign jit lib libpq mb nodes optimizer parser partitioning postmaster regex replication rewrite statistics storage tcop snowball snowball/libstemmer tsearch tsearch/dicts utils port port/atomics port/win32 port/win32_msvc port/win32_msvc/sys port/win32/arpa port/win32/netinet port/win32/sys portability; do \
cd '/home/nadesh/git/postgresql/install/include/server'/$dir || exit; \
chmod 644 *.h || exit; \
done
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/include'
make -C interfaces install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/interfaces'
make -C libpq install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../src/common all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/common'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib' '/home/nadesh/git/postgresql/install/lib/pkgconfig'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/include' '/home/nadesh/git/postgresql/install/include/internal' '/home/nadesh/git/postgresql/install/share'
/usr/bin/install -c -m 755 libpq.so.5.14 '/home/nadesh/git/postgresql/install/lib/libpq.so.5.14'
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libpq.so.5 && \
ln -s libpq.so.5.14 libpq.so.5
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libpq.so && \
ln -s libpq.so.5.14 libpq.so
/usr/bin/install -c -m 644 libpq.a '/home/nadesh/git/postgresql/install/lib/libpq.a'
/usr/bin/install -c -m 644 libpq.pc '/home/nadesh/git/postgresql/install/lib/pkgconfig/libpq.pc'
/usr/bin/install -c -m 644 ./libpq-fe.h '/home/nadesh/git/postgresql/install/include'
/usr/bin/install -c -m 644 ./libpq-events.h '/home/nadesh/git/postgresql/install/include'
/usr/bin/install -c -m 644 ./libpq-int.h '/home/nadesh/git/postgresql/install/include/internal'
/usr/bin/install -c -m 644 ./pqexpbuffer.h '/home/nadesh/git/postgresql/install/include/internal'
/usr/bin/install -c -m 644 ./pg_service.conf.sample '/home/nadesh/git/postgresql/install/share/pg_service.conf.sample'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ecpg install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg'
make -C include install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/include'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/include' '/home/nadesh/git/postgresql/install/include/informix/esql'
/usr/bin/install -c -m 644 ./ecpgerrno.h ./ecpglib.h ./ecpgtype.h ./sqlca.h ./sql3types.h ./ecpg_informix.h ./pgtypes_error.h ./pgtypes_numeric.h ./pgtypes_timestamp.h ./pgtypes_date.h ./pgtypes_interval.h ./pgtypes.h ./sqlda.h ./sqlda-compat.h ./sqlda-native.h '/home/nadesh/git/postgresql/install/include/'
/usr/bin/install -c -m 644 ./datetime.h ./decimal.h ./sqltypes.h '/home/nadesh/git/postgresql/install/include/informix/esql/'
/usr/bin/install -c -m 644 ../../../../src/interfaces/ecpg/include/ecpg_config.h '/home/nadesh/git/postgresql/install/include'
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/include'
make -C pgtypeslib install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
make -C ../../../../src/port all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../../src/common all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/common'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib' '/home/nadesh/git/postgresql/install/lib/pkgconfig'
/usr/bin/install -c -m 755 libpgtypes.so.3.14 '/home/nadesh/git/postgresql/install/lib/libpgtypes.so.3.14'
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libpgtypes.so.3 && \
ln -s libpgtypes.so.3.14 libpgtypes.so.3
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libpgtypes.so && \
ln -s libpgtypes.so.3.14 libpgtypes.so
/usr/bin/install -c -m 644 libpgtypes.a '/home/nadesh/git/postgresql/install/lib/libpgtypes.a'
/usr/bin/install -c -m 644 libpgtypes.pc '/home/nadesh/git/postgresql/install/lib/pkgconfig/libpgtypes.pc'
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
make -C ecpglib install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/ecpglib'
make -C ../../../../src/interfaces/libpq all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../src/port all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../src/common all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../../src/interfaces/ecpg/pgtypeslib all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
make -C ../../../../src/port all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../../src/common all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib' '/home/nadesh/git/postgresql/install/lib/pkgconfig'
/usr/bin/install -c -m 755 libecpg.so.6.14 '/home/nadesh/git/postgresql/install/lib/libecpg.so.6.14'
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libecpg.so.6 && \
ln -s libecpg.so.6.14 libecpg.so.6
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libecpg.so && \
ln -s libecpg.so.6.14 libecpg.so
/usr/bin/install -c -m 644 libecpg.a '/home/nadesh/git/postgresql/install/lib/libecpg.a'
/usr/bin/install -c -m 644 libecpg.pc '/home/nadesh/git/postgresql/install/lib/pkgconfig/libecpg.pc'
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/ecpglib'
make -C compatlib install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/compatlib'
make -C ../../../../src/interfaces/ecpg/ecpglib all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/ecpglib'
make -C ../../../../src/interfaces/libpq all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../src/port all
make[7]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[7]: Nothing to be done for 'all'.
make[7]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../src/common all
make[7]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[7]: Nothing to be done for 'all'.
make[7]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../../src/interfaces/ecpg/pgtypeslib all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
make -C ../../../../src/port all
make[7]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[7]: Nothing to be done for 'all'.
make[7]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../../src/common all
make[7]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[7]: Nothing to be done for 'all'.
make[7]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/ecpglib'
make -C ../../../../src/interfaces/ecpg/pgtypeslib all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
make -C ../../../../src/port all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../../src/common all
make[6]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[6]: Nothing to be done for 'all'.
make[6]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/pgtypeslib'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib' '/home/nadesh/git/postgresql/install/lib/pkgconfig'
/usr/bin/install -c -m 755 libecpg_compat.so.3.14 '/home/nadesh/git/postgresql/install/lib/libecpg_compat.so.3.14'
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libecpg_compat.so.3 && \
ln -s libecpg_compat.so.3.14 libecpg_compat.so.3
cd '/home/nadesh/git/postgresql/install/lib' && \
rm -f libecpg_compat.so && \
ln -s libecpg_compat.so.3.14 libecpg_compat.so
/usr/bin/install -c -m 644 libecpg_compat.a '/home/nadesh/git/postgresql/install/lib/libecpg_compat.a'
/usr/bin/install -c -m 644 libecpg_compat.pc '/home/nadesh/git/postgresql/install/lib/pkgconfig/libecpg_compat.pc'
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/compatlib'
make -C preproc install
make[4]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/preproc'
make -C ../../../../src/port all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../../src/common all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/common'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/bin'
/usr/bin/install -c ecpg '/home/nadesh/git/postgresql/install/bin'
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg/preproc'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/ecpg'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces'
make -C backend/replication/libpqwalreceiver install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/backend/replication/libpqwalreceiver'
make -C ../../../../src/interfaces/libpq all
make[3]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../src/common all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[3]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 libpqwalreceiver.so '/home/nadesh/git/postgresql/install/lib/libpqwalreceiver.so'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/backend/replication/libpqwalreceiver'
make -C backend/replication/pgoutput install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/backend/replication/pgoutput'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 755 pgoutput.so '/home/nadesh/git/postgresql/install/lib/pgoutput.so'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/backend/replication/pgoutput'
make -C fe_utils install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/fe_utils'
/usr/bin/mkdir -p '/home/nadesh/git/postgresql/install/lib'
/usr/bin/install -c -m 644 libpgfeutils.a '/home/nadesh/git/postgresql/install/lib/libpgfeutils.a'
make[2]: Leaving directory '/home/nadesh/git/postgresql/src/fe_utils'
make -C bin install
make[2]: Entering directory '/home/nadesh/git/postgresql/src/bin'
make -C initdb install
make[3]: Entering directory '/home/nadesh/git/postgresql/src/bin/initdb'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../src/port all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../src/common all
make[5]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/home/nadesh/git/postgresql/src/common'
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/port'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/port'
make -C ../../../src/common all
make[4]: Entering directory '/home/nadesh/git/postgresql/src/common'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/nadesh/git/postgresql/src/common'