diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-11-17 02:56:10 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-11-17 02:56:10 (GMT) |
commit | 44fb1f071d53cc99c2c92d9f85b659bfd012f9cf (patch) | |
tree | 34fa71825a19ff08ff09a760514c40c6eeecdefb /src/postgresql.mk | |
parent | cc06f950de7119efa2fc4227f6f3c83abb2e5e3a (diff) | |
download | mxe-44fb1f071d53cc99c2c92d9f85b659bfd012f9cf.zip mxe-44fb1f071d53cc99c2c92d9f85b659bfd012f9cf.tar.gz mxe-44fb1f071d53cc99c2c92d9f85b659bfd012f9cf.tar.bz2 |
fix dummy permissions (664 -> 644)
Diffstat (limited to 'src/postgresql.mk')
-rw-r--r-- | src/postgresql.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/postgresql.mk b/src/postgresql.mk index 05c9c33..10aaa34 100644 --- a/src/postgresql.mk +++ b/src/postgresql.mk @@ -54,8 +54,8 @@ define $(PKG)_BUILD $(MAKE) -C '$(1)'/src/interfaces/libpq -j '$(JOBS)' install haslibarule= shlib= $(MAKE) -C '$(1)'/src/port -j '$(JOBS)' haslibarule= shlib= $(MAKE) -C '$(1)'/src/bin/psql -j '$(JOBS)' install haslibarule= shlib= - $(INSTALL) -m664 '$(1)/src/include/pg_config.h' '$(PREFIX)/$(TARGET)/include/' - $(INSTALL) -m664 '$(1)/src/include/postgres_ext.h' '$(PREFIX)/$(TARGET)/include/' + $(INSTALL) -m644 '$(1)/src/include/pg_config.h' '$(PREFIX)/$(TARGET)/include/' + $(INSTALL) -m644 '$(1)/src/include/postgres_ext.h' '$(PREFIX)/$(TARGET)/include/' # Build a native pg_config. cd '$(1)' && $(call UNPACK_PKG_ARCHIVE,postgresql) mv '$(1)/$(postgresql_SUBDIR)' '$(1).native' |