Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9d182ef

Browse files
committed
Update of install-sh, mkinstalldirs, and associated configury
Update install-sh to that from Autoconf 2.63, plus our Darwin-specificchanges (which I simplified a bit). install-sh is now able to installmultiple files in one run, so we could simplify our makefiles sometime.install-sh also now has a -d option to create directories, so we don't needmkinstalldirs anymore.Use AC_PROG_MKDIR_P in configure.in, so we can use mkdir -p when availableinstead of install-sh -d. For consistency with the rest of the world,the corresponding make variable has been renamed from $(mkinstalldirs) to$(MKDIR_P).
1 parent7ca774a commit9d182ef

File tree

34 files changed

+503
-397
lines changed

34 files changed

+503
-397
lines changed

‎config/Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $PostgreSQL: pgsql/config/Makefile,v 1.2 2005/12/09 21:19:34 petere Exp $
1+
# $PostgreSQL: pgsql/config/Makefile,v 1.3 2009/08/26 22:24:42 petere Exp $
22

33
subdir = config
44
top_builddir = ..
@@ -7,10 +7,9 @@ include $(top_builddir)/src/Makefile.global
77

88
install: all installdirs
99
$(INSTALL_SCRIPT)$(srcdir)/install-sh'$(DESTDIR)$(pgxsdir)/config/install-sh'
10-
$(INSTALL_SCRIPT)$(srcdir)/mkinstalldirs'$(DESTDIR)$(pgxsdir)/config/mkinstalldirs'
1110

1211
installdirs:
13-
$(mkinstalldirs)'$(DESTDIR)$(pgxsdir)/config'
12+
$(MKDIR_P)'$(DESTDIR)$(pgxsdir)/config'
1413

1514
uninstall:
16-
rm -f'$(DESTDIR)$(pgxsdir)/config/install-sh''$(DESTDIR)$(pgxsdir)/config/mkinstalldirs'
15+
rm -f'$(DESTDIR)$(pgxsdir)/config/install-sh'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp