diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-19 02:50:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-19 02:50:32 +0000 |
commit | db90fdf9abedf57c2fc8fd34da18ae647f67cfa9 (patch) | |
tree | 6fbbb49f37f116e7c510f8fc899f2391d8102a2a /src | |
parent | e7be9d330359435ad3e7652d686affab6bebf4f9 (diff) | |
download | postgresql-db90fdf9abedf57c2fc8fd34da18ae647f67cfa9.tar.gz postgresql-db90fdf9abedf57c2fc8fd34da18ae647f67cfa9.zip |
Correct busted syntax of CC invocation for tas.s.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/port/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/port/Makefile.in b/src/backend/port/Makefile.in index ccae5e1ec2c..190651cab20 100644 --- a/src/backend/port/Makefile.in +++ b/src/backend/port/Makefile.in @@ -13,7 +13,7 @@ # be converted to Method 2. # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.21 2000/05/11 17:46:31 momjian Exp $ +# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.22 2000/05/19 02:50:32 tgl Exp $ # #------------------------------------------------------------------------- @@ -39,7 +39,7 @@ qnx4.dir: $(MAKE) -C qnx4 all tas.o: tas.s - $(CC) $(CFLAGS) -c tas.o tas.s $(LDFLAGS) + $(CC) $(CFLAGS) -c tas.s .PHONY: clean dep |