Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ab432f20
Commit
ab432f20
authored
Dec 30, 2000
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix unportable use of '!' in shell commands.
parent
aa44078e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
Makefile
Makefile
+1
-1
src/Makefile
src/Makefile
+1
-1
src/interfaces/python/GNUmakefile
src/interfaces/python/GNUmakefile
+3
-3
No files found.
Makefile
View file @
ab432f20
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
all check install installdirs installcheck uninstall dep depend clean distclean maintainer-clean
:
all check install installdirs installcheck uninstall dep depend clean distclean maintainer-clean
:
@
if
!
[
-f
GNUmakefile
]
;
then
\
@
if
[
!
-f
GNUmakefile
]
;
then
\
echo
"You need to run the 'configure' program first. See the file"
;
\
echo
"You need to run the 'configure' program first. See the file"
;
\
echo
"'INSTALL' for installation instructions."
;
\
echo
"'INSTALL' for installation instructions."
;
\
false
;
\
false
;
\
...
...
src/Makefile
View file @
ab432f20
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
all check install installdirs installcheck uninstall dep depend clean distclean maintainer-clean
:
all check install installdirs installcheck uninstall dep depend clean distclean maintainer-clean
:
@
if
!
[
-f
GNUmakefile
]
;
then
\
@
if
[
!
-f
GNUmakefile
]
;
then
\
echo
"You need to run the 'configure' program first. See the file"
;
\
echo
"You need to run the 'configure' program first. See the file"
;
\
echo
"'INSTALL' for installation instructions."
;
\
echo
"'INSTALL' for installation instructions."
;
\
false
;
\
false
;
\
...
...
src/interfaces/python/GNUmakefile
View file @
ab432f20
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
#
#
# Written by Peter Eisentraut <peter_e@gmx.net>
# Written by Peter Eisentraut <peter_e@gmx.net>
#
#
# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.
2 2000/08/31 16:12:01
petere Exp $
# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.
3 2000/12/30 00:24:09
petere Exp $
#
#
#-------------------------------------------------------------------
#-------------------------------------------------------------------
...
@@ -34,8 +34,8 @@ Setup.in: Setup.in.raw
...
@@ -34,8 +34,8 @@ Setup.in: Setup.in.raw
install
:
all
install
:
all
@
echo
"Installing Python module"
@
echo
"Installing Python module"
@
if
!
(
$(INSTALL_DATA)
pg.py
$(python_moduledir)
&&
\
@
if
(
$(INSTALL_DATA)
pg.py
$(python_moduledir)
&&
\
$(MAKE)
-f
Makefile
install
)
;
then
\
$(MAKE)
-f
Makefile
install
)
;
then
:
;
else
\
echo
"*****"
;
\
echo
"*****"
;
\
echo
"* Skipping the installation of the Python interface module for lack"
;
\
echo
"* Skipping the installation of the Python interface module for lack"
;
\
echo
"* of permissions. To install it, change to the directory"
;
\
echo
"* of permissions. To install it, change to the directory"
;
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment