openssh/openssh-6.1p1-askpass-ld.patch

19 lines
789 B
Diff
Raw Permalink Normal View History

2012-09-14 20:18:22 +00:00
diff -up openssh-6.1p1/contrib/Makefile.askpass-ld openssh-6.1p1/contrib/Makefile
--- openssh-6.1p1/contrib/Makefile.askpass-ld 2012-05-19 07:24:37.000000000 +0200
+++ openssh-6.1p1/contrib/Makefile 2012-09-14 20:35:47.565704718 +0200
@@ -4,12 +4,12 @@ all:
2011-08-08 21:32:31 +00:00
@echo "Valid targets: gnome-ssh-askpass1 gnome-ssh-askpass2"
gnome-ssh-askpass1: gnome-ssh-askpass1.c
- $(CC) `gnome-config --cflags gnome gnomeui` \
+ $(CC) ${CFLAGS} `gnome-config --cflags gnome gnomeui` \
gnome-ssh-askpass1.c -o gnome-ssh-askpass1 \
`gnome-config --libs gnome gnomeui`
gnome-ssh-askpass2: gnome-ssh-askpass2.c
2012-09-14 20:18:22 +00:00
- $(CC) `$(PKG_CONFIG) --cflags gtk+-2.0` \
+ $(CC) ${CFLAGS} `$(PKG_CONFIG) --cflags gtk+-2.0` \
2011-08-08 21:32:31 +00:00
gnome-ssh-askpass2.c -o gnome-ssh-askpass2 \
2012-09-14 20:18:22 +00:00
`$(PKG_CONFIG) --libs gtk+-2.0 x11`
2011-08-08 21:32:31 +00:00